forked from teamnwah/openmw-tes3coop
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 =
|
std::string directory =
|
||||||
Misc::StringUtils::lowerCase (Settings::Manager::getString ("character", "Saves"));
|
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)
|
for (MWBase::StateManager::CharacterIterator it = mgr->characterBegin(); it != mgr->characterEnd(); ++it)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in a new issue