1
0
Fork 1
mirror of https://github.com/TES3MP/openmw-tes3mp.git synced 2025-02-01 05:45:33 +00:00

Make sure hand-to-hand shortcut is not saved

This commit is contained in:
Capostrophic 2019-11-20 19:57:21 +03:00
parent 2cbb01627b
commit eed92c824e

View file

@ -504,7 +504,8 @@ namespace MWGui
ESM::QuickKeys keys; ESM::QuickKeys keys;
for (int i=0; i<10; ++i) // NB: The quick key with index 9 always has Hand-to-Hand type and must not be saved
for (int i=0; i<9; ++i)
{ {
ItemWidget* button = mKey[i].button; ItemWidget* button = mKey[i].button;
@ -553,7 +554,8 @@ namespace MWGui
int i=0; int i=0;
for (ESM::QuickKeys::QuickKey& quickKey : keys.mKeys) for (ESM::QuickKeys::QuickKey& quickKey : keys.mKeys)
{ {
if (i >= 10) // NB: The quick key with index 9 always has Hand-to-Hand type and must not be loaded
if (i >= 9)
return; return;
mSelected = &mKey[i]; mSelected = &mKey[i];