We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 9461f3b + 08ca561 commit ef6a016Copy full SHA for ef6a016
Common/src/main/kotlin/gay/object/hexdebug/debugger/HexDebugger.kt
@@ -410,7 +410,8 @@ class HexDebugger(
410
var hitBreakpoint = false
411
412
while (true) {
413
- val result = executeNextDebugStep(vm, exactlyOnce = true).let { lastResult?.plus(it) ?: it }
+ var result = executeNextDebugStep(vm, exactlyOnce = true)
414
+ if (lastResult != null) result += lastResult
415
lastResult = result
416
417
if (result.reason.stopImmediately) return result
0 commit comments