diff --git a/resources/gba.acl b/resources/gba.acl index c2e44d7..de4d782 100644 Binary files a/resources/gba.acl and b/resources/gba.acl differ diff --git a/tools/cheat-builder/build.js b/tools/cheat-builder/build.js index fe5ac8a..55e2816 100644 --- a/tools/cheat-builder/build.js +++ b/tools/cheat-builder/build.js @@ -159,8 +159,8 @@ const format = roms => { let ret = new Uint8Array( output ); ret.set( sers, serialbase ); - ret.set( offs, offsetbase ); - ret.set( cheats, cheatbase ); + ret.set( new Uint8Array(offs.buffer), offsetbase ); + ret.set( new Uint8Array(cheats.buffer), cheatbase ); ret.set( expanded, expandbase ); return ret;