Merge pull request #963 from LuigiBlood/64dd_2
[64DD] Load 64DD IPL on g_DDRom seperately
This commit is contained in:
commit
cfbf695f26
|
@ -219,7 +219,11 @@ bool CN64System::RunFileImage(const char * FileLoc)
|
||||||
if (g_Rom->CicChipID() == CIC_NUS_8303)
|
if (g_Rom->CicChipID() == CIC_NUS_8303)
|
||||||
{
|
{
|
||||||
//64DD IPL
|
//64DD IPL
|
||||||
g_DDRom = g_Rom;
|
if (g_DDRom == NULL)
|
||||||
|
{
|
||||||
|
g_DDRom = new CN64Rom();
|
||||||
|
}
|
||||||
|
g_DDRom->LoadN64ImageIPL(FileLoc);
|
||||||
g_Settings->SaveString(File_DiskIPLPath, FileLoc);
|
g_Settings->SaveString(File_DiskIPLPath, FileLoc);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue