diff options
Diffstat (limited to 'src/main/kotlin/gui/CpuRegisterWindow.kt')
| -rw-r--r-- | src/main/kotlin/gui/CpuRegisterWindow.kt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main/kotlin/gui/CpuRegisterWindow.kt b/src/main/kotlin/gui/CpuRegisterWindow.kt index 618d298..b7f9116 100644 --- a/src/main/kotlin/gui/CpuRegisterWindow.kt +++ b/src/main/kotlin/gui/CpuRegisterWindow.kt @@ -8,7 +8,7 @@ import imgui.ImGui fun paintCpuRegisterWindow(registers: Registers) { with(ImGui) { setNextWindowSize(Vec2(200, 250), Cond.FirstUseEver) - setNextWindowPos(Vec2(20, 150), Cond.FirstUseEver) + setNextWindowPos(Vec2(15, 80), Cond.FirstUseEver) begin("CPU state") text("Registers:") |