Update of /cvsroot/wpdev/wolfpack
In directory sc8-pr-cvs1:/tmp/cvs-serv29493
Modified Files:
console_unix.cpp
Log Message:
Temp compile fix by Dark-Storm
Index: console_unix.cpp
===================================================================
RCS file: /cvsroot/wpdev/wolfpack/console_unix.cpp,v
retrieving revision 1.5
retrieving revision 1.6
diff -C2 -d -r1.5 -r1.6
*** console_unix.cpp 12 Sep 2003 21:04:12 -0000 1.5
--- console_unix.cpp 12 Sep 2003 21:51:53 -0000 1.6
***************
*** 29,32 ****
--- 29,33 ----
// Wolfpack Homepage: http://wpdev.sf.net/
//==================================================================================
+ #include <stdio.h>
// Qt Includes
#include <qthread.h>
***************
*** 47,51 ****
while( serverState < SHUTDOWN )
{
! char c = getch();
if( c > 0 && serverState == RUNNING )
{
--- 48,52 ----
while( serverState < SHUTDOWN )
{
! char c = fgetc( stdin );
if( c > 0 && serverState == RUNNING )
{
|