diff options
-rw-r--r-- | TODO.md | 1 | ||||
-rw-r--r-- | tsalis/src/handler.c | 11 |
2 files changed, 9 insertions, 3 deletions
@@ -5,7 +5,6 @@ ## TSALIS UPDATES - Create process cursor selector (on WORLD and PROCESS view) - Better console: - - Console resumes sim after closing - Allow longer input - Allow hex input - Line editing diff --git a/tsalis/src/handler.c b/tsalis/src/handler.c index b1dae89..acce333 100644 --- a/tsalis/src/handler.c +++ b/tsalis/src/handler.c @@ -277,10 +277,17 @@ tsh_handleEvent(int event) break; case 'c': - g_running = SFALSE; - nodelay(stdscr, SFALSE); + if (g_running) { + nodelay(stdscr, SFALSE); + } + tsp_printData(); runConsole(); + + if (g_running) { + nodelay(stdscr, STRUE); + } + break; case ' ': |