From e4e561bd94df819f4ce9487f28b1d18a8d178810 Mon Sep 17 00:00:00 2001 From: James Barnett Date: Tue, 24 Jul 2018 20:24:58 +0100 Subject: Add ram dump debug window --- src/main/kotlin/gui/DebugWindow.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/main/kotlin/gui/DebugWindow.kt') diff --git a/src/main/kotlin/gui/DebugWindow.kt b/src/main/kotlin/gui/DebugWindow.kt index d80d2b3..f336ef6 100644 --- a/src/main/kotlin/gui/DebugWindow.kt +++ b/src/main/kotlin/gui/DebugWindow.kt @@ -6,7 +6,7 @@ import imgui.ImGui fun paintDebugWindow() { with(ImGui) { - setNextWindowPos(Vec2(20, 50), Cond.FirstUseEver) + setNextWindowPos(Vec2(15, 10), Cond.FirstUseEver) begin("Debug info") text("%.1f FPS (%.2f ms/frame)", io.framerate, 1_000f / io.framerate) end() -- cgit v1.2.3