1
0
Fork 0
mirror of https://github.com/OpenMW/openmw.git synced 2025-01-20 14:23:53 +00:00

Workaround for bug #820

This commit is contained in:
vorenon 2013-06-16 01:09:03 +02:00
parent e5ddaaf676
commit 4c0086b54c

View file

@ -471,7 +471,7 @@ namespace MWGui
const MyGUI::Colour linkHot (223/255.f, 201/255.f, 159/255.f);
const MyGUI::Colour linkNormal (150/255.f, 50/255.f, 30/255.f);
const MyGUI::Colour linkActive (243/255.f, 237/255.f, 221/255.f);
for (std::map<std::string, int>::iterator it = mChoices.begin(); it != mChoices.end(); ++it)
for (std::map<std::string, int>::reverse_iterator it = mChoices.rbegin(); it != mChoices.rend(); ++it)
{
Choice* link = new Choice(it->second);
mLinks.push_back(link);