Zelda HLE: Initial support for Zelda Twilight Princess (GC)
Very close to the TWW version of the UCode, haven't determined any differences yet (but I'm sure that will come soon). Works well enough to reach ingame without any errors other than a few volume issues.
This commit is contained in:
parent
b672788548
commit
6c61ee6278
|
@ -53,6 +53,7 @@ UCodeInterface* UCodeFactory(u32 crc, DSPHLE* dsphle, bool wii)
|
|||
return new AXUCode(dsphle, crc);
|
||||
|
||||
case 0x86840740: // Zelda WW - US
|
||||
case 0x6CA33A6D: // Zelda TP GC - US
|
||||
return new ZeldaUCode(dsphle, crc);
|
||||
|
||||
case 0x2ea36ce6: // Some Wii demos
|
||||
|
|
|
@ -15,7 +15,8 @@
|
|||
// * Super Mario Sunshine (type ????, CRC ????)
|
||||
// * The Legend of Zelda: Four Swords Adventures (type ????, CRC ????)
|
||||
// * The Legend of Zelda: The Wind Waker (type DAC, CRC 86840740)
|
||||
// * The Legend of Zelda: Twilight Princess (type ????, CRC ????)
|
||||
// * The Legend of Zelda: Twilight Princess / GC (type DAC, CRC 6CA33A6D)
|
||||
// * The Legend of Zelda: Twilight Princess / Wii (type ????, CRC ????)
|
||||
|
||||
#include "Core/ConfigManager.h"
|
||||
#include "Core/HW/DSPHLE/MailHandler.h"
|
||||
|
|
Loading…
Reference in New Issue