1
0
Fork 0

Fix download rate on splash screen.

This commit is contained in:
James Turner 2013-10-21 23:04:10 +01:00
parent baebc9b64c
commit 6845ff56f3

View file

@ -403,10 +403,6 @@ void fgSplashProgress( const char *identifier ) {
"sys", "<incomplete language resource>");
}
if (!strcmp(fgGetString("/sim/startup/splash-progress-text"), text)) {
return;
}
if (!strcmp(identifier,"downloading-scenery")) {
std::ostringstream oss;
unsigned int kbytesPerSec = fgGetInt("/sim/terrasync/transfer-rate-bytes-sec") / 1024;
@ -415,9 +411,13 @@ void fgSplashProgress( const char *identifier ) {
oss << " - " << kbytesPerSec << " KBytes/sec";
}
fgSetString("/sim/startup/splash-progress-text", oss.str());
} else {
return;
}
if (!strcmp(fgGetString("/sim/startup/splash-progress-text"), text)) {
return;
}
SG_LOG( SG_VIEW, SG_INFO, "Splash screen progress " << identifier );
fgSetString("/sim/startup/splash-progress-text", text);
}
}