diff debug.c @ 2701:5ca4e0fd761b

Update debug views while paused in the debug (except on Windows... for now)
author Michael Pavone <pavone@retrodev.com>
date Fri, 04 Jul 2025 19:35:50 -0700
parents c4256ce2c45a
children 829205a9647a
line wrap: on
line diff
--- a/debug.c	Sun Jun 29 23:38:56 2025 -0700
+++ b/debug.c	Fri Jul 04 19:35:50 2025 -0700
@@ -2317,6 +2317,10 @@
 		process_events();
 #ifndef IS_LIB
 		render_update_display();
+		vdp_context *vdp = current_system->get_vdp(current_system);
+		if (vdp) {
+			vdp_update_per_frame_debug(vdp);
+		}
 #endif
 #ifndef _WIN32
 		timeout.tv_sec = 0;