mirror of
https://github.com/BeamMP/BeamMP-Server.git
synced 2026-02-16 10:41:01 +00:00
fix version printing
This commit is contained in:
@@ -98,6 +98,6 @@ Version::Version(uint8_t major, uint8_t minor, uint8_t patch)
|
||||
|
||||
std::string Version::AsString() {
|
||||
std::stringstream ss {};
|
||||
ss << major << "." << minor << "." << patch;
|
||||
ss << int(major) << "." << int(minor) << "." << int(patch);
|
||||
return ss.str();
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user