Set up EnableDisk when anything 64DD is being loaded

This commit is contained in:
LuigiBlood 2019-01-25 23:11:33 +01:00
parent f300fd9cb5
commit c0b3246a2e
2 changed files with 2 additions and 0 deletions

View File

@ -64,6 +64,7 @@ bool CN64Disk::LoadDiskImage(const char * FileLoc)
if (g_Disk == this)
{
g_Settings->SaveBool(GameRunning_LoadingInProgress, false);
g_Settings->SaveBool(Setting_EnableDisk, true);
SaveDiskSettingID(false);
}
return true;

View File

@ -751,6 +751,7 @@ bool CN64Rom::LoadN64ImageIPL(const char * FileLoc, bool LoadBootCodeOnly)
if (!LoadBootCodeOnly && g_DDRom == this)
{
g_Settings->SaveBool(GameRunning_LoadingInProgress, false);
g_Settings->SaveBool(Setting_EnableDisk, true);
SaveRomSettingID(false);
}