This commit is contained in:
floty
2007-11-01 20:41:14 +00:00
parent 3f52a31c84
commit a31ee1a003
2 changed files with 3 additions and 2 deletions
+2 -2
View File
@@ -353,11 +353,11 @@ void Log::logNewGameAdminMsg(QString playerName) {
void Log::logPlayerWinGame(QString playerName, int gameID) {
myW->textBrowser_Log->append( "<br><i><b>"+playerName+" wins game " + QString::number(gameID,10) +"!</i></b><br>");
myW->textBrowser_Log->append( "<br><i><b>"+playerName+" wins game " + QString::number(gameID,10) +"!</i></b>");
if(myConfig->readConfigInt("LogOnOff")) {
logFileStreamString += "</br></br><i><b>"+playerName+" wins game " + QString::number(gameID,10) +"!</i></b><br>\n";
logFileStreamString += "</br></br><i><b>"+playerName+" wins game " + QString::number(gameID,10) +"!</i></b></br>\n";
if(myConfig->readConfigInt("LogInterval") == 0) {
writeLogFileStream(logFileStreamString);
+1
View File
@@ -2641,6 +2641,7 @@ void mainWindowImpl::postRiverRunAnimation3() {
}
}
textBrowser_Log->append("");
postRiverRunAnimation3Timer->start(postRiverRunAnimationSpeed/2);
}