mirror of
https://github.com/GearsProgress/Poke_Transporter_GB.git
synced 2026-09-09 01:25:35 -05:00
Fix missing erase_sector() call to fix stalls on save for CART link data writing
+ fix broken toggle in debug menu
This commit is contained in:
@@ -195,7 +195,7 @@ void show_debug_info_screen(void *context, unsigned user_param)
|
||||
void dbg_set_byte_val(void *context, unsigned user_param)
|
||||
{
|
||||
u8 *flag_ptr = (u8*)context;
|
||||
*flag_ptr = (user_param != 0);
|
||||
*flag_ptr = (u8)user_param;
|
||||
}
|
||||
|
||||
void dbg_play_song(void *context, unsigned user_param)
|
||||
|
||||
Reference in New Issue
Block a user