修正打包程序的bug: u16变u8

This commit is contained in:
root 2022-12-26 23:14:42 +08:00
parent fafdb9005c
commit 9b16071ac2
2 changed files with 2 additions and 2 deletions

Binary file not shown.

View File

@ -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;