From 6cc4cbd69617686c5e6760e9387ebfc4244df010 Mon Sep 17 00:00:00 2001 From: mfranz Date: Sun, 4 Jun 2006 17:18:05 +0000 Subject: [PATCH] fix the splash background color property path --- src/Main/splash.cxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Main/splash.cxx b/src/Main/splash.cxx index 05cf58c90..dc07ad9f0 100644 --- a/src/Main/splash.cxx +++ b/src/Main/splash.cxx @@ -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); -- 2.39.5