Skip to content
Snippets Groups Projects
Commit c1ff71a0 authored by rswindell's avatar rswindell
Browse files

Fixed misuse of inkey() in ansi_getlines().

parent e9ea05d6
No related branches found
No related tags found
No related merge requests found
...@@ -103,7 +103,7 @@ void sbbs_t::ansi_getlines() ...@@ -103,7 +103,7 @@ void sbbs_t::ansi_getlines()
&& online==ON_REMOTE) { /* Remote */ && online==ON_REMOTE) { /* Remote */
SYNC; SYNC;
putcom("\x1b[s\x1b[99B\x1b[6n\x1b[u"); putcom("\x1b[s\x1b[99B\x1b[6n\x1b[u");
inkey(TIMEOUT_ANSI_GETXY*1000); inkey(K_NONE,TIMEOUT_ANSI_GETXY*1000);
} }
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment