Skip to content

Commit

Permalink
Zelda HLE: Initial support for Zelda Twilight Princess (GC)
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
delroth committed Aug 14, 2015
1 parent b672788 commit 6c61ee6
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
1 change: 1 addition & 0 deletions Source/Core/Core/HW/DSPHLE/UCodes/UCodes.cpp
Expand Up @@ -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
Expand Down
3 changes: 2 additions & 1 deletion Source/Core/Core/HW/DSPHLE/UCodes/Zelda.cpp
Expand Up @@ -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"
Expand Down

0 comments on commit 6c61ee6

Please sign in to comment.