]> git.mxchange.org Git - flightgear.git/commitdiff
Minor error message formatting.
authorThorstenB <brehmt@gmail.com>
Sat, 4 Jun 2011 15:55:37 +0000 (17:55 +0200)
committerThorstenB <brehmt@gmail.com>
Sat, 4 Jun 2011 15:55:37 +0000 (17:55 +0200)
src/Main/main.cxx

index b0460ba1a04b744681358d94ffd3b049c5718bd1..bc17b04b0ae2a97d16fa82b23c904a1488ae718c 100644 (file)
@@ -618,10 +618,11 @@ int fgMainInit( int argc, char **argv ) {
         // tell the operator how to use this application
 
         SG_LOG( SG_GENERAL, SG_ALERT, "" ); // To popup the console on windows
-        cerr << endl << "Base package check failed ... " \
-             << "Found version " << base_version << " at: " \
-             << globals->get_fg_root() << endl;
-        cerr << "Please upgrade to version: " << required_version << endl;
+        cerr << endl << "Base package check failed:" << endl \
+             << "  Version " << base_version << " found at: " \
+             << globals->get_fg_root() << endl \
+             << "  Version " << required_version << " is required." << endl \ 
+             << "Please upgrade/downgrade base package." << endl;
 #ifdef _MSC_VER
         cerr << "Hit a key to continue..." << endl;
         cin.get();