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:
parent
2cbb01627b
commit
eed92c824e
@ -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];
|
||||
|
Loading…
Reference in New Issue
Block a user