summaryrefslogtreecommitdiffhomepage
path: root/src/debug.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/debug.c')
-rw-r--r--src/debug.c10
1 files changed, 9 insertions, 1 deletions
diff --git a/src/debug.c b/src/debug.c
index 0dddf54..d981c0f 100644
--- a/src/debug.c
+++ b/src/debug.c
@@ -17,7 +17,7 @@ void draw_debug_text(cstr renderer_name, float fps_display)
2,
2,
" frame count: %"PRIu64" ",
- rodeo_frame_count_get()
+ rodeo_gfx_frame_count_get()
);
rodeo_debug_text_draw(
@@ -47,4 +47,12 @@ void draw_debug_text(cstr renderer_name, float fps_display)
" total count: %d ",
get_ghost_count() + get_enemy_count()
);
+
+ rodeo_debug_text_draw(
+ 2,
+ 7,
+ " res: %"PRIu16"x%"PRIu16" ",
+ rodeo_window_screen_width_get(),
+ rodeo_window_screen_height_get()
+ );
}