]> git.mxchange.org Git - flightgear.git/commitdiff
Drop from 4 to 3 splash screens for now.
authorcurt <curt>
Mon, 19 May 2003 20:35:50 +0000 (20:35 +0000)
committercurt <curt>
Mon, 19 May 2003 20:35:50 +0000 (20:35 +0000)
src/Main/splash.cxx

index 59328b15f9dc130b19c55d3d5e991953c3738f4d..bd5108b53077c835dc429201f9d9a66e5f16423f 100644 (file)
@@ -58,7 +58,7 @@ void fgSplashInit ( void ) {
     splash.bind();
 
     // load in the texture data
-    int num = (int)(sg_random() * 4.0 + 1.0);
+    int num = (int)(sg_random() * 3.0 + 1.0);
     char num_str[256];
     sprintf(num_str, "%d", num);
 
@@ -90,8 +90,8 @@ void fgSplashInit ( void ) {
 // Update the splash screen with progress specified from 0.0 to 1.0
 void fgSplashUpdate ( double progress, float alpha ) {
     int xmin, ymin, xmax, ymax;
-    int xsize = 480;
-    int ysize = 380;
+    int xsize = 512;
+    int ysize = 512;
 
     if ( !fgGetInt("/sim/startup/xsize")
         || !fgGetInt("/sim/startup/ysize") ) {