]> git.mxchange.org Git - flightgear.git/commitdiff
fix the splash background color property path
authormfranz <mfranz>
Sun, 4 Jun 2006 17:18:05 +0000 (17:18 +0000)
committermfranz <mfranz>
Sun, 4 Jun 2006 17:18:05 +0000 (17:18 +0000)
src/Main/splash.cxx

index 05cf58c909157b5240cad9abe2a01d5307b90fe7..dc07ad9f0104cff18208b3b17cad786723761935 100644 (file)
@@ -169,7 +169,7 @@ void fgSplashUpdate ( float alpha ) {
 
     // draw the background
     FGColor c(0.0, 0.0, 0.0);
-    c.merge(fgGetNode("/sim/gui/colors/splash-screen"));
+    c.merge(fgGetNode("/sim/gui/style/colors/splash-screen"));
     glColor4f(c.red(), c.green(), c.blue(), alpha );
     glBegin(GL_POLYGON);
     glVertex2f(0.0, 0.0);
@@ -204,7 +204,7 @@ void fgSplashUpdate ( float alpha ) {
 
         info.begin();
         FGColor c(1.0, 0.9, 0.0);
-        c.merge(fgGetNode("/sim/gui/colors/splash-font"));
+        c.merge(fgGetNode("/sim/gui/style/colors/splash-font"));
         glColor4f(c.red(), c.green(), c.blue(), alpha);
 
         font.getBBox(progress_text, fontsize, 0, &left, &right, &bot, &top);