mirror of
https://github.com/Mauler125/r5sdk.git
synced 2025-02-09 19:15:03 +01:00
Fix bug in navmesh tool caused by transforming string
Value passed into 'std::tolower' must be unsigned.
This commit is contained in:
parent
5551909ac7
commit
a79ed2f52f
@ -341,7 +341,8 @@ bool InputGeom::load(rcContext* ctx, const std::string& filepath)
|
||||
return false;
|
||||
|
||||
std::string extension = filepath.substr(extensionPos);
|
||||
std::transform(extension.begin(), extension.end(), extension.begin(), tolower);
|
||||
std::transform(extension.begin(), extension.end(), extension.begin(),
|
||||
[](unsigned char c) { return char(std::tolower(c)); });
|
||||
|
||||
if (extension == ".gset")
|
||||
return loadGeomSet(ctx, filepath);
|
||||
|
Loading…
x
Reference in New Issue
Block a user