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 0de7ad6..618d298 100644 --- a/src/main/kotlin/gui/CpuRegisterWindow.kt +++ b/src/main/kotlin/gui/CpuRegisterWindow.kt @@ -7,7 +7,7 @@ import imgui.ImGui fun paintCpuRegisterWindow(registers: Registers) { with(ImGui) { - setNextWindowSize(Vec2(200, 300), Cond.FirstUseEver) + setNextWindowSize(Vec2(200, 250), Cond.FirstUseEver) setNextWindowPos(Vec2(20, 150), Cond.FirstUseEver) begin("CPU state") |