removed the putch in readchar to avoid double printing

This commit is contained in:
Jared Young 2019-11-04 11:28:05 -05:00
parent 1994e4fdb4
commit a0a8c22de6
1 changed files with 0 additions and 1 deletions

View File

@ -343,7 +343,6 @@ char Console::ReadChar()
if(c == '\r')
c = '\n';
putch(c);
return c;
}