去掉日志

This commit is contained in:
anod 2023-03-07 19:04:28 +08:00
parent 3473dd2008
commit ed0aa3aea9

View File

@ -392,15 +392,17 @@ static Result loadGbaRom(const char *const path, u32 *const romSizeOut)
fClose(f); fClose(f);
// use the gbaatm cheat // use the gbaatm cheat
char gamecode[5]; if( g_oafConfig.cheatMode != CHEAT_MODE_DISABLED )
memcpy( gamecode, ROM_LOC+0xac, 4 ); {
gamecode[4] = '\0'; char gamecode[5];
debug_printf( "open res:%d\n", acl_open_lib( "gba.acl" )); memcpy( gamecode, ROM_LOC+0xac, 4 );
debug_printf(" select res:%d\n", acl_select_game( gamecode, 0, NULL )); gamecode[4] = '\0';
int err = apply_cheat( g_oafConfig.cheatMode, fileSize, g_oafConfig.cheatKeys, CHEAT_INUSE_ADDR, &fileSize ); acl_open_lib( "gba.acl" );
debug_printf("cheat res: %s => %d\n", gamecode, err); acl_select_game( gamecode, 0, NULL );
acl_close_lib(); apply_cheat( g_oafConfig.cheatMode, fileSize, g_oafConfig.cheatKeys, CHEAT_INUSE_ADDR, &fileSize );
fini_current_cheat(); acl_close_lib();
fini_current_cheat();
}
*romSizeOut = fixRomPadding(fileSize); *romSizeOut = fixRomPadding(fileSize);
} }