1
0
mirror of https://gitlab.com/OpenMW/openmw.git synced 2025-01-04 02:41:19 +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;
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;
@ -553,7 +554,8 @@ namespace MWGui
int i=0;
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;
mSelected = &mKey[i];