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:
Pierre Bourdon 2014-12-21 06:21:59 +01:00
parent b672788548
commit 6c61ee6278
2 changed files with 3 additions and 1 deletions

View File

@ -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

View File

@ -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"