Skip to content

Commit

Permalink
SporeModManager: use << instead of + in CheckifCoreLibMatchesVersion()
Browse files Browse the repository at this point in the history
  • Loading branch information
Rosalie241 committed Oct 28, 2023
1 parent 79b61be commit f78f3fb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion SporeModManager/SporeModManagerHelpers/FileVersion.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ bool FileVersion::CheckIfCoreLibMatchesVersion(FileVersionInfo& modFileVersionIn

if (modFileVersionInfo > coreLibFileVersionInfo)
{
std::cerr << "\"" << modName << "\" requires newer modapi dll (\"" + modFileVersionInfo.string() <<
std::cerr << "\"" << modName << "\" requires newer modapi dll (\"" << modFileVersionInfo.string() <<
"\") than what's currently installed (\"" << coreLibFileVersionInfo.string() << "\")" << std::endl;
return false;
}
Expand Down

0 comments on commit f78f3fb

Please sign in to comment.