diff options
Diffstat (limited to 'src/main/kotlin/gui/EmulationOutputWindow.kt')
| -rw-r--r-- | src/main/kotlin/gui/EmulationOutputWindow.kt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main/kotlin/gui/EmulationOutputWindow.kt b/src/main/kotlin/gui/EmulationOutputWindow.kt index 489edbe..14fe246 100644 --- a/src/main/kotlin/gui/EmulationOutputWindow.kt +++ b/src/main/kotlin/gui/EmulationOutputWindow.kt @@ -7,7 +7,7 @@ import imgui.ImGui fun paintEmulationOutputWindow() { with(ImGui) { setNextWindowSize(Vec2(640, 576), Cond.FirstUseEver) - setNextWindowPos(Vec2(400, 50), Cond.FirstUseEver) + setNextWindowPos(Vec2(620, 10), Cond.FirstUseEver) begin("Emulation output - 4x scale") text("TODO - actually render something...") end() |