aboutsummaryrefslogtreecommitdiff
path: root/src/main/kotlin/gui/DebugWindow.kt
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/kotlin/gui/DebugWindow.kt')
-rw-r--r--src/main/kotlin/gui/DebugWindow.kt2
1 files changed, 1 insertions, 1 deletions
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()