From 97811e883270f3db606a9bd6af048abfa36bcd6a Mon Sep 17 00:00:00 2001 From: mfranz Date: Fri, 6 May 2005 15:48:48 +0000 Subject: [PATCH] fade out text, too; cosmetics --- src/Main/splash.cxx | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/Main/splash.cxx b/src/Main/splash.cxx index 23b470510..2f71c4155 100644 --- a/src/Main/splash.cxx +++ b/src/Main/splash.cxx @@ -53,7 +53,7 @@ static const int fontsize = 19; static const char fontname[] = "default.txf"; -static const char *text = 0; +static const char *progress_text = 0; static SGTexture splash; @@ -125,7 +125,7 @@ void fgSplashInit ( const char *splash_texture ) { void fgSplashProgress ( const char *s ) { - text = s; + progress_text = s; fgRequestRedraw(); } @@ -185,7 +185,7 @@ void fgSplashUpdate ( float alpha ) { glEnd(); } - if (text && fgGetBool("/sim/startup/splash-progress", true)) { + if (progress_text && fgGetBool("/sim/startup/splash-progress", true)) { glEnable(GL_ALPHA_TEST); glEnable(GL_BLEND); glAlphaFunc(GL_GREATER, 0.1f); @@ -195,10 +195,10 @@ void fgSplashUpdate ( float alpha ) { float left, right, bot, top; info.begin(); - glColor3f(1.0, 0.9, 0.0); - font.getBBox(text, fontsize, 0, &left, &right, &bot, &top); + glColor4f(1.0, 0.9, 0.0, alpha); + font.getBBox(progress_text, fontsize, 0, &left, &right, &bot, &top); info.start2f((screen_width - right) / 2.0, 10.0 - bot); - info.puts(text); + info.puts(progress_text); const char *s = fgGetString("/sim/startup/splash-title", ""); font.getBBox(s, fontsize, 0, &left, &right, &bot, &top); -- 2.39.5