mirror of
https://github.com/TES3MP/openmw-tes3mp.git
synced 2025-03-03 03:49:41 +00:00
Fix large size_t being truncated to int
This commit is contained in:
parent
8b33c087e0
commit
68afac6a19
1 changed files with 1 additions and 1 deletions
|
@ -117,7 +117,7 @@ namespace MWGui
|
|||
std::string directory =
|
||||
Misc::StringUtils::lowerCase (Settings::Manager::getString ("character", "Saves"));
|
||||
|
||||
int selectedIndex = MyGUI::ITEM_NONE;
|
||||
size_t selectedIndex = MyGUI::ITEM_NONE;
|
||||
|
||||
for (MWBase::StateManager::CharacterIterator it = mgr->characterBegin(); it != mgr->characterEnd(); ++it)
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue