This commit is contained in:
2025-02-19 10:20:45 -07:00
parent 2ab09f9b4c
commit 89cfdb4d65
5 changed files with 43 additions and 21 deletions

View File

@ -93,10 +93,10 @@ int emu_run(int argc, char **argv) {
while(!ctx.die) {
sleep_ms(1);
ui_handle_events();
if (prev_frame != ppu_get_context()->current_frame) {
//if (prev_frame != ppu_get_context()->current_frame) {
ui_update();
}
prev_frame = ppu_get_context()->current_frame;
//}
//prev_frame = ppu_get_context()->current_frame;
}