convert the path to std::string before using it to prevent a compiler error
This commit is contained in:
parent
7f4fe977a1
commit
e165fc5ebe
1 changed files with 1 additions and 1 deletions
|
@ -2621,7 +2621,7 @@ void Options::setupRoot(int argc, char **argv)
|
|||
flightgear::fatalMessageBox("Base package version mismatch",
|
||||
"Version check failed: please check your installation.",
|
||||
"Found data files for version '" + base_version +
|
||||
"' at '" + globals->get_fg_root() + "', version '"
|
||||
"' at '" + globals->get_fg_root().str() + "', version '"
|
||||
+ required_version + "' is required.");
|
||||
|
||||
exit(-1);
|
||||
|
|
Loading…
Reference in a new issue