mirror of
https://github.com/hrydgard/ppsspp.git
synced 2024-11-23 05:19:56 +00:00
Fix another version parsing bug
This commit is contained in:
parent
67282cafc4
commit
2d0295bbb3
@ -13,6 +13,7 @@ bool Version::ParseVersionString(std::string str) {
|
|||||||
if (2 != sscanf(str.c_str(), "%i.%i", &major, &minor))
|
if (2 != sscanf(str.c_str(), "%i.%i", &major, &minor))
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
std::string Version::ToString() const {
|
std::string Version::ToString() const {
|
||||||
|
Loading…
Reference in New Issue
Block a user