diff options
| author | Ryan Houdek <Sonicadvance1@gmail.com> | 2014-04-18 23:31:44 -0500 |
|---|---|---|
| committer | Ryan Houdek <Sonicadvance1@gmail.com> | 2014-04-18 23:31:44 -0500 |
| commit | e6fa9bf048eb92eb00e092dd10d5ebd0b94f63d0 (patch) | |
| tree | 312736bb2e822bdce2238763c7c915615df461aa /Source/Core | |
| parent | 5a5e63bdd475b5706ed4f8a56c3d30b4afc893f8 (diff) | |
Change IPL horizontal offset from +5 to 0.
Noticed this while fiddling with things.
Having a default offset of +5 is stupid.
Changes the bit that contains the offset and the two hashs.
Diffstat (limited to 'Source/Core')
| -rw-r--r-- | Source/Core/Core/HW/Sram.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Source/Core/Core/HW/Sram.cpp b/Source/Core/Core/HW/Sram.cpp index d40059032e..2a6d58a4cd 100644 --- a/Source/Core/Core/HW/Sram.cpp +++ b/Source/Core/Core/HW/Sram.cpp @@ -7,12 +7,12 @@ // english SRAM sram_dump = {{ - 0x04, 0x6B, - 0xFB, 0x91, + 0xFF, 0x6B, + 0x00, 0x91, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFF, 0xFF, 0x40, - 0x05, + 0x00, 0x00, 0x00, 0x2C, |
