Update of /cvsroot/wpdev/wolfpack
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv23910
Modified Files:
wolfpack.cpp
Log Message:
Makes debugging easier.
Index: wolfpack.cpp
===================================================================
RCS file: /cvsroot/wpdev/wolfpack/wolfpack.cpp,v
retrieving revision 1.482
retrieving revision 1.483
diff -C2 -d -r1.482 -r1.483
*** wolfpack.cpp 29 Jan 2004 15:34:44 -0000 1.482
--- wolfpack.cpp 29 Jan 2004 23:20:09 -0000 1.483
***************
*** 366,371 ****
--- 366,373 ----
// Try to load several data files
+ #if !defined(_DEBUG)
try
{
+ #endif
Console::instance()->send( "Loading skills...\n" );
Skills->load();
***************
*** 409,412 ****
--- 411,415 ----
Console::instance()->send( "\n" );
+ #if !defined(_DEBUG)
}
catch( wpException &exception )
***************
*** 420,424 ****
return 1;
}
!
SetGlobalVars();
--- 423,427 ----
return 1;
}
! #endif
SetGlobalVars();
|