Skip to content

Commit

Permalink
Fix Windows build.
Browse files Browse the repository at this point in the history
  • Loading branch information
codereader committed Dec 26, 2019
1 parent 985bacf commit 84c59f9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions radiant/modulesystem/ApplicationContextImpl.cpp
Expand Up @@ -65,6 +65,7 @@ std::string ApplicationContextImpl::getRuntimeDataPath() const
# else
return _appPath + "../share/darkradiant/";
# endif
#else
return getApplicationPath();
#endif
}
Expand Down
2 changes: 1 addition & 1 deletion radiant/xmlregistry/XMLRegistry.cpp
Expand Up @@ -262,7 +262,7 @@ void XMLRegistry::loadUserFileFromSettingsPath(const ApplicationContext& ctx,
// skip them and move on (as if the user-modified file simply did
// not exist).
rError() << "XMLRegistry: user settings file " << filename
<< " could not be parsed and was skipped." << std::endl;
<< " could not be parsed and was skipped (" << e.what() << ")" << std::endl;
}
}
else
Expand Down

0 comments on commit 84c59f9

Please sign in to comment.