1
0
Fork 0

Don't repeat splash-screen status on the console.

This commit is contained in:
James Turner 2012-05-11 17:07:37 +01:00
parent 79391f818c
commit 02fcd32e44

View file

@ -371,6 +371,10 @@ void fgSplashInit () {
}
void fgSplashProgress ( const char *text ) {
if (!strcmp(fgGetString("/sim/startup/splash-progress-text"), text)) {
return;
}
SG_LOG( SG_VIEW, SG_INFO, "Splash screen progress " << text );
fgSetString("/sim/startup/splash-progress-text", text);
}