mirror of
https://github.com/OpenMW/openmw.git
synced 2025-11-30 20:34:31 +00:00
Address conversion warning in the launcher
This commit is contained in:
parent
ddd614f815
commit
f181420cce
1 changed files with 1 additions and 1 deletions
|
|
@ -145,7 +145,7 @@ namespace Launcher
|
||||||
|
|
||||||
int getMaxNavMeshDbFileSizeMiB()
|
int getMaxNavMeshDbFileSizeMiB()
|
||||||
{
|
{
|
||||||
return Settings::navigator().mMaxNavmeshdbFileSize / (1024 * 1024);
|
return static_cast<int>(Settings::navigator().mMaxNavmeshdbFileSize / (1024 * 1024));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue