diff options
Diffstat (limited to 'tb')
| -rw-r--r-- | tb/top/conspiracion.cpp | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/tb/top/conspiracion.cpp b/tb/top/conspiracion.cpp index 15da2ea..96fd57f 100644 --- a/tb/top/conspiracion.cpp +++ b/tb/top/conspiracion.cpp @@ -379,6 +379,11 @@ int main(int argc, char **argv) { tick(); tick(); + + if(top.breakpoint) + { + top.halt = 1; + } }; if(!no_tty) @@ -481,7 +486,7 @@ int main(int argc, char **argv) const char *cmd = std::strtok(line, " "); if(!std::strcmp(cmd, "continue")) { - top.halt = false; + top.halt = 0; break; } else if(!std::strcmp(cmd, "dump-mem")) { |
