Don't repeat splash-screen status on the console.
This commit is contained in:
parent
79391f818c
commit
02fcd32e44
1 changed files with 4 additions and 0 deletions
|
@ -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);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue