diff options
| author | James Barnett <noreply@jamesbarnett.xyz> | 2018-07-21 19:46:20 +0100 |
|---|---|---|
| committer | James Barnett <noreply@jamesbarnett.xyz> | 2018-07-21 19:46:20 +0100 |
| commit | c6a953d722b1fdc27a9db6f78f00c52fe43a7222 (patch) | |
| tree | 6efab06c40d0bd3c26876ca2b40f2f0f20b2def2 /src/main/kotlin/gui/CpuRegisterWindow.kt | |
| parent | 2861f2db6f918c48019c1ac3f91bf6a407452493 (diff) | |
| download | KGB-c6a953d722b1fdc27a9db6f78f00c52fe43a7222.tar.xz KGB-c6a953d722b1fdc27a9db6f78f00c52fe43a7222.zip | |
Add ability to step through CPU execution of boot rom
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") |