mirror of
https://github.com/TES3MP/openmw-tes3mp.git
synced 2025-01-20 10:23:51 +00:00
removed encoding workaround for attribute names
This commit is contained in:
parent
416b61d06a
commit
4c53495d99
1 changed files with 1 additions and 4 deletions
|
@ -31,10 +31,7 @@ namespace MWMechanics
|
||||||
|
|
||||||
for (int i=0; names[i][0]; ++i)
|
for (int i=0; names[i][0]; ++i)
|
||||||
{
|
{
|
||||||
// This crashes because of encoding problems:
|
std::string label = mStore.gameSettings.find (names[i][1])->str;
|
||||||
// std::string label = mStore.gameSettings.find (names[i][1])->str;
|
|
||||||
|
|
||||||
std::string label = names[i][1]; // until the problem is fixed, use the GMST ID as label
|
|
||||||
|
|
||||||
mWindowManager.setLabel (names[i][0], label);
|
mWindowManager.setLabel (names[i][0], label);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue