mirror of
https://github.com/OpenMW/openmw.git
synced 2025-01-19 19:53:53 +00:00
Merge branch 'bug-fix-7105' into 'master'
Use a wider type when converting to a signed type Closes #7105 See merge request OpenMW/openmw!2543
This commit is contained in:
commit
7662fee47d
1 changed files with 2 additions and 2 deletions
|
@ -199,10 +199,10 @@ std::string Misc::ResourceHelpers::getLODMeshName(
|
|||
return "";
|
||||
}
|
||||
}();
|
||||
for (char l = lod; l >= 0; --l)
|
||||
for (int l = lod; l >= 0; --l)
|
||||
{
|
||||
std::stringstream patern;
|
||||
patern << distantMeshPattern << "_" << int(l);
|
||||
patern << distantMeshPattern << "_" << l;
|
||||
std::string const meshName = getBestLODMeshName(resPath, vfs, patern.str());
|
||||
if (meshName != resPath)
|
||||
return meshName;
|
||||
|
|
Loading…
Reference in a new issue