Skip to content
Snippets Groups Projects
Commit d9e0adac authored by deuce's avatar deuce
Browse files

Fix unlikely backspace bug.

parent 05a54504
No related branches found
No related tags found
No related merge requests found
......@@ -1246,7 +1246,7 @@ void ctputs(char *buf)
*p=0;
cputs(outp);
outp=p+1;
if(cx>0)
if(cx>1)
cx--;
gotoxy(cx,cy);
break;
......
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