aboutsummaryrefslogtreecommitdiff
path: root/source/cheats2.c
diff options
context:
space:
mode:
authorJoão Silva2017-08-26 00:26:09 +0100
committerJoão Silva2017-08-26 00:26:09 +0100
commit7becd31bfe9ba0cd77ed9dc034563e0ab513a8c9 (patch)
tree33e4229f9175a51e5fc309d05b5f83f3de19251f /source/cheats2.c
parent3013ee57130a36b8bd4c314c659c100c3885cd80 (diff)
downloadsnesemu-7becd31bfe9ba0cd77ed9dc034563e0ab513a8c9.tar.gz
snesemu-7becd31bfe9ba0cd77ed9dc034563e0ab513a8c9.tar.bz2
snesemu-7becd31bfe9ba0cd77ed9dc034563e0ab513a8c9.zip
Still cleaning things up...
Diffstat (limited to 'source/cheats2.c')
-rw-r--r--source/cheats2.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/cheats2.c b/source/cheats2.c
index cc303b8..067a929 100644
--- a/source/cheats2.c
+++ b/source/cheats2.c
@@ -81,7 +81,7 @@ void S9xRemoveCheat(uint32_t which1)
uint8_t* ptr = Memory.Map [block];
if (ptr >= (uint8_t*) MAP_LAST)
- *(ptr + (address & 0xffff)) = Cheat.c [which1].saved_byte;
+ ptr[address & 0xffff] = Cheat.c [which1].saved_byte;
else
S9xSetByte(Cheat.c [which1].saved_byte, address);
/* Unsave the address for the next call to S9xRemoveCheat. */
@@ -102,7 +102,7 @@ void S9xApplyCheat(uint32_t which1)
ptr = Memory.Map [block];
if (ptr >= (uint8_t*) MAP_LAST)
- *(ptr + (address & 0xffff)) = Cheat.c [which1].byte;
+ ptr[address & 0xffff] = Cheat.c [which1].byte;
else
S9xSetByte(Cheat.c [which1].byte, address);
Cheat.c [which1].saved = true;