Update of /cvsroot/wpdev/wolfpack
In directory sc8-pr-cvs1:/tmp/cvs-serv32485
Modified Files:
console_unix.cpp
Log Message:
Fix console command handling
Index: console_unix.cpp
===================================================================
RCS file: /cvsroot/wpdev/wolfpack/console_unix.cpp,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -d -r1.2 -r1.3
*** console_unix.cpp 9 Sep 2003 22:04:48 -0000 1.2
--- console_unix.cpp 9 Sep 2003 22:17:59 -0000 1.3
***************
*** 49,54 ****
while( serverState < SHUTDOWN )
{
! char c = cin.peek();
!
if( c > 0 && serverState == RUNNING )
{
--- 49,53 ----
while( serverState < SHUTDOWN )
{
! char c = cin.get();
if( c > 0 && serverState == RUNNING )
{
|