mirror of
https://github.com/TES3MP/openmw-tes3mp.git
synced 2025-01-29 17:15:32 +00:00
fix crash on simultaneous key presses
This commit is contained in:
parent
d790a27060
commit
24d5fb09da
1 changed files with 6 additions and 14 deletions
|
@ -303,7 +303,8 @@ namespace MWGui
|
|||
|
||||
void QuickKeysMenu::activateQuickKey(int index)
|
||||
{
|
||||
assert(index > 0);
|
||||
assert(index >= 1 && index <= 9);
|
||||
|
||||
struct keyData *key = &mKey[index-1];
|
||||
|
||||
MWWorld::Ptr player = MWMechanics::getPlayer();
|
||||
|
@ -318,15 +319,12 @@ namespace MWGui
|
|||
|
||||
bool isReturnNeeded = playerStats.isParalyzed() || playerStats.isDead();
|
||||
|
||||
if (isReturnNeeded && key->type != Type_Item)
|
||||
{
|
||||
if (isReturnNeeded)
|
||||
return;
|
||||
}
|
||||
else if(isDelayNeeded && key->type != Type_Item)
|
||||
{
|
||||
|
||||
else if (isDelayNeeded)
|
||||
mActivated = key;
|
||||
return;
|
||||
}
|
||||
|
||||
else
|
||||
mActivated = nullptr;
|
||||
|
||||
|
@ -367,12 +365,6 @@ namespace MWGui
|
|||
|
||||
// delay weapon switching if player is busy
|
||||
if (isDelayNeeded && (isWeapon || isTool))
|
||||
{
|
||||
mActivated = key;
|
||||
return;
|
||||
}
|
||||
// disable weapon switching if player is dead or paralyzed
|
||||
else if (isReturnNeeded && (isWeapon || isTool))
|
||||
{
|
||||
return;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue