Merge branch 'master' of https://github.com/project64/project64
This commit is contained in:
commit
0252ede652
|
@ -54,7 +54,7 @@ $Have Zero Time all Levels
|
|||
81386004 3000
|
||||
|
||||
$Infinite\Air
|
||||
81385F8E 0E10
|
||||
813851AE 0E10
|
||||
|
||||
$Infinite\Always Have All Jinjos
|
||||
80385F7B 00FF
|
||||
|
@ -66,8 +66,7 @@ $Infinite\Gold Feathers
|
|||
80385F73 00FF
|
||||
|
||||
$Infinite\Health
|
||||
80385F83 0008
|
||||
80385F87 0008
|
||||
803851A3 0008
|
||||
|
||||
$Infinite\Jiggies
|
||||
80385FCB 00FF
|
||||
|
|
|
@ -516,11 +516,7 @@ bool CN64System::RunFileImage(const char * FileLoc)
|
|||
g_Settings->SaveString(File_DiskIPLTOOLPath, FileLoc);
|
||||
}
|
||||
|
||||
if (g_Settings->LoadBool(Setting_AutoStart) != 0)
|
||||
{
|
||||
WriteTrace(TraceN64System, TraceDebug, "Automattically starting rom");
|
||||
RunLoadedImage();
|
||||
}
|
||||
RunLoadedImage();
|
||||
return true;
|
||||
}
|
||||
|
||||
|
@ -538,11 +534,7 @@ bool CN64System::RunDiskImage(const char * FileLoc)
|
|||
}
|
||||
|
||||
g_Settings->SaveBool(Setting_EnableDisk, true);
|
||||
if (g_Settings->LoadBool(Setting_AutoStart) != 0)
|
||||
{
|
||||
WriteTrace(TraceN64System, TraceDebug, "Automattically starting rom");
|
||||
RunLoadedImage();
|
||||
}
|
||||
RunLoadedImage();
|
||||
return true;
|
||||
}
|
||||
|
||||
|
@ -564,11 +556,7 @@ bool CN64System::RunDiskComboImage(const char * FileLoc, const char * FileLocDis
|
|||
}
|
||||
|
||||
g_Settings->SaveBool(Setting_EnableDisk, true);
|
||||
if (g_Settings->LoadBool(Setting_AutoStart) != 0)
|
||||
{
|
||||
WriteTrace(TraceN64System, TraceDebug, "Automattically starting rom");
|
||||
RunLoadedImage();
|
||||
}
|
||||
RunLoadedImage();
|
||||
return true;
|
||||
}
|
||||
|
||||
|
@ -578,7 +566,11 @@ void CN64System::RunLoadedImage(void)
|
|||
g_BaseSystem = new CN64System(g_Plugins, (uint32_t)time(NULL), false, false);
|
||||
if (g_BaseSystem)
|
||||
{
|
||||
g_BaseSystem->StartEmulation(true);
|
||||
if (g_Settings->LoadBool(Setting_AutoStart) != 0)
|
||||
{
|
||||
WriteTrace(TraceN64System, TraceDebug, "Automattically starting rom");
|
||||
g_BaseSystem->StartEmulation(true);
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
|
|
|
@ -302,6 +302,10 @@ bool CMainMenu::ProcessMessage(HWND hWnd, DWORD /*FromAccelerator*/, DWORD MenuI
|
|||
//Now we have created again, we can start up emulation
|
||||
if (g_BaseSystem)
|
||||
{
|
||||
if (g_Settings->LoadBool(Setting_AutoStart) == 0)
|
||||
{
|
||||
WriteTrace(TraceN64System, TraceDebug, "Manually starting rom");
|
||||
}
|
||||
g_BaseSystem->StartEmulation(true);
|
||||
}
|
||||
else
|
||||
|
|
Loading…
Reference in New Issue