diff options
| author | James Barnett <noreply@jamesbarnett.xyz> | 2018-07-24 20:24:58 +0100 |
|---|---|---|
| committer | James Barnett <noreply@jamesbarnett.xyz> | 2018-07-24 20:24:58 +0100 |
| commit | e4e561bd94df819f4ce9487f28b1d18a8d178810 (patch) | |
| tree | 4ff6bb0d6e9afbb6cb06eeceb2dc3d538bbc5adc /src/main/kotlin/gui/EmulationOutputWindow.kt | |
| parent | 6acdde8f7093c0fb2e95d8dbc14dfab096b0a027 (diff) | |
| download | KGB-e4e561bd94df819f4ce9487f28b1d18a8d178810.tar.xz KGB-e4e561bd94df819f4ce9487f28b1d18a8d178810.zip | |
Add ram dump debug window
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() |