[wpdev-commits] wolfpack/win config_win.cpp,1.7,1.8
Brought to you by:
rip,
thiagocorrea
From: Correa <thi...@us...> - 2004-10-09 14:32:41
|
Update of /cvsroot/wpdev/wolfpack/win In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv12336/win Modified Files: config_win.cpp Log Message: Fixed bug #0000348 ( Guards should kill instantly ) Index: config_win.cpp =================================================================== RCS file: /cvsroot/wpdev/wolfpack/win/config_win.cpp,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -d -r1.7 -r1.8 *** config_win.cpp 2 Sep 2004 23:29:51 -0000 1.7 --- config_win.cpp 9 Oct 2004 14:32:23 -0000 1.8 *************** *** 102,106 **** if ( !thePath.exists() || thePath.entryList( "*.mul" ).isEmpty() ) { ! Console::instance()->log( LOG_WARNING, QString( "UO Mul files not found at '%1', trying to locate...\n" ).arg( mulPath_ ) ); QString uoPath( getUOPath() ); if ( !uoPath.isEmpty() ) --- 102,106 ---- if ( !thePath.exists() || thePath.entryList( "*.mul" ).isEmpty() ) { ! Console::instance()->log( LOG_WARNING, tr( "UO Mul files not found at '%1', trying to locate...\n" ).arg( mulPath_ ) ); QString uoPath( getUOPath() ); if ( !uoPath.isEmpty() ) *************** *** 111,115 **** } else ! Console::instance()->log( LOG_ERROR, "Unable to find *.mul files path. Please check wolfpack.xml, section \"General\", key \"MulPath\"" ); } return mulPath_; --- 111,115 ---- } else ! Console::instance()->log( LOG_ERROR, tr("Unable to find *.mul files path. Please check wolfpack.xml, section \"General\", key \"MulPath\"") ); } return mulPath_; |