Got rid of the Wii UCode special CRC case handling. Tell me if it bothers any of you for any possible reason

git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@2096 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
XTra.KrazzY 2009-02-03 22:58:01 +00:00
parent 9981670e37
commit c1d47f1c29
1 changed files with 6 additions and 10 deletions

View File

@ -72,18 +72,14 @@ IUCode* UCodeFactory(u32 _CRC, CMailHandler& _rMailHandler)
printf("Zelda Wii ucode chosen");
return new CUCode_Zelda(_rMailHandler);
case 0x5ef56da3: // AX demo
case 0x347112ba: // raving rabbits
case 0xfa450138: // wii sports - PAL
case 0xadbc06bd: // Elebits
case 0xb7eb9a9c: // Wii Pikmin - JAP
printf("Wii - AXWii chosen");
return new CUCode_AXWii(_rMailHandler, _CRC);
default:
PanicAlert("Unknown ucode (CRC = %08x) - forcing AX/AXWii", _CRC);
if(g_dspInitialize.bWii)
if(g_dspInitialize.bWii) {
printf("Wii - AXWii chosen");
return new CUCode_AXWii(_rMailHandler, _CRC);
}
PanicAlert("Unknown GC UCode (CRC = %08x) - forcing AX", _CRC);
return new CUCode_AX(_rMailHandler);
}