Compare commits

..

No commits in common. "0323836ed27107c95f21ef3ee1f31aa740baade1" and "5863a6798fa4f293084acd7fb3f7636a6460fff5" have entirely different histories.

3 changed files with 1 additions and 5 deletions

View File

@ -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)
{

View File

@ -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)

View File

@ -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);