Compare commits
No commits in common. "0323836ed27107c95f21ef3ee1f31aa740baade1" and "5863a6798fa4f293084acd7fb3f7636a6460fff5" have entirely different histories.
0323836ed2
...
5863a6798f
@ -41,7 +41,7 @@ namespace AxibugEmuOnline.Client.Manager
|
||||
|
||||
public void BeginGame(RomFile romFile)
|
||||
{
|
||||
if (!m_emuCore.IsNull()) return;
|
||||
if (!m_emuCore.Equals(null)) return;
|
||||
|
||||
switch (romFile.Platform)
|
||||
{
|
||||
|
@ -15,8 +15,6 @@ namespace AxibugEmuOnline.Client
|
||||
|
||||
public override void OnExcute()
|
||||
{
|
||||
if (m_gameUI.IsOnline) return;
|
||||
|
||||
object state = m_gameUI.GetQuickState();
|
||||
Stopwatch sw = Stopwatch.StartNew();
|
||||
if (state != null)
|
||||
|
@ -19,8 +19,6 @@ namespace AxibugEmuOnline.Client
|
||||
|
||||
public override void OnExcute()
|
||||
{
|
||||
if (m_gameUI.IsOnline) return;
|
||||
|
||||
Stopwatch sw = Stopwatch.StartNew();
|
||||
object state = m_gameUI.Core.GetState();
|
||||
m_gameUI.SaveQuickState(state);
|
||||
|
Loading…
Reference in New Issue
Block a user