Minor error message formatting.
This commit is contained in:
parent
a2c768c7cd
commit
bc9ffe96c2
1 changed files with 5 additions and 4 deletions
|
@ -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();
|
||||
|
|
Loading…
Add table
Reference in a new issue