1
0
Fork 0
mirror of https://github.com/OpenMW/openmw.git synced 2025-11-30 11:34:32 +00:00

Address conversion warning in the launcher

This commit is contained in:
Evil Eye 2025-09-20 16:22:18 +02:00
parent ddd614f815
commit f181420cce

View file

@ -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));
} }
} }
} }