aboutsummaryrefslogtreecommitdiff
path: root/engines/sword1/control.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'engines/sword1/control.cpp')
-rw-r--r--engines/sword1/control.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/engines/sword1/control.cpp b/engines/sword1/control.cpp
index aeb9da700b..d8cc03bce5 100644
--- a/engines/sword1/control.cpp
+++ b/engines/sword1/control.cpp
@@ -327,7 +327,8 @@ uint8 Control::getClicks(uint8 mode, uint8 *retVal) {
uint8 flag = 0;
if (_keyPressed == 27)
flag = kButtonCancel;
- else if (_keyPressed == '\r' || _keyPressed == '\n')
+ // 3 is num keypad Enter on Macs. See FR #1273746
+ else if (_keyPressed == '\r' || _keyPressed == '\n' || _keyPressed == 3)
flag = kButtonOk;
if (flag) {