Merge pull request #963 from LuigiBlood/64dd_2

[64DD] Load 64DD IPL on g_DDRom seperately
This commit is contained in:
zilmar 2016-02-01 11:40:38 +11:00
commit cfbf695f26
1 changed files with 5 additions and 1 deletions

View File

@ -219,7 +219,11 @@ bool CN64System::RunFileImage(const char * FileLoc)
if (g_Rom->CicChipID() == CIC_NUS_8303)
{
//64DD IPL
g_DDRom = g_Rom;
if (g_DDRom == NULL)
{
g_DDRom = new CN64Rom();
}
g_DDRom->LoadN64ImageIPL(FileLoc);
g_Settings->SaveString(File_DiskIPLPath, FileLoc);
}