diff options
Diffstat (limited to 'plugins/cheat/cheat_simple.lua')
-rw-r--r-- | plugins/cheat/cheat_simple.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/cheat/cheat_simple.lua b/plugins/cheat/cheat_simple.lua index 7058dfa8a0b..c10c0a6ac41 100644 --- a/plugins/cheat/cheat_simple.lua +++ b/plugins/cheat/cheat_simple.lua @@ -192,7 +192,7 @@ function codefuncs.megadriv_ar(desc, code) if #code ~= 10 then error("error action replay cheat incorrect length " .. desc) end - local addr = tonumber(code:sub(1, 7), 16) + local addr = tonumber(code:sub(1, 6), 16) local val = tonumber(code:sub(7, 10), 16) if addr < 0xff0000 then error("error action replay cheat not ram addr " .. desc) |