mirror of
https://github.com/melonDS-emu/melonDS.git
synced 2025-07-25 23:29:55 -06:00
remove AR code size limit (#1802)
Co-authored-by: Arisotura <thetotalworm@gmail.com>
This commit is contained in:
@ -110,7 +110,7 @@ void RunCheat(ARCode& arcode)
|
||||
|
||||
for (;;)
|
||||
{
|
||||
if (code >= &arcode.Code[arcode.CodeLen])
|
||||
if (code >= &arcode.Code[arcode.Code.size()])
|
||||
break;
|
||||
|
||||
u32 a = *code++;
|
||||
|
Reference in New Issue
Block a user