We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 864de2a commit 5caf636Copy full SHA for 5caf636
scripts/draw_debug_overlay/draw_debug_overlay.gml
@@ -52,7 +52,7 @@ function draw_debug_overlay(){
52
default: cwindow = string(window) break
53
}
54
yy = draw_debug_overlay_stack(xx, yy, "Open Note Block Studio v" + version)
55
- yy = draw_debug_overlay_stack(xx, yy, string(fps) + " FPS")
+ yy = draw_debug_overlay_stack(xx, yy, string(fps) + " FPS (" + string_format(fps / game_get_speed(gamespeed_fps) * 100, 1, 0) + "%) ")
56
yy = draw_debug_overlay_stack(xx, yy, "Window: " + string(cwindow))
57
yy = draw_debug_overlay_stack(xx, yy, os_info[? condstr(os_type = os_windows, "video_adapter_description", "gl_renderer_string: GL_RENDERER")])
58
yy = draw_debug_overlay_stack(xx, yy, "Display: " + string(window_width) + "x" + string(window_height))
0 commit comments