From 31889203126d27f9cfcc2eef16c139c0bb83debd Mon Sep 17 00:00:00 2001 From: marauder2k7 Date: Sat, 14 Mar 2026 12:44:22 +0000 Subject: [PATCH] Update actionMap.cpp --- Engine/source/sim/actionMap.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Engine/source/sim/actionMap.cpp b/Engine/source/sim/actionMap.cpp index c852dbf8d..939584fe1 100644 --- a/Engine/source/sim/actionMap.cpp +++ b/Engine/source/sim/actionMap.cpp @@ -483,7 +483,7 @@ bool ActionMap::createEventDescriptor(const char* pEventString, EventDescriptor* pDescriptor->flags |= SI_MAC_OPT; } #else - if (dStricmp(pModifier, "ctrl") == 0 || (dStricmp(pModifier, "cmd") == 0) + if (dStricmp(pModifier, "ctrl") == 0 || dStricmp(pModifier, "cmd") == 0) { pDescriptor->flags |= SI_CTRL; }