[Scummvm-git-logs] scummvm master -> 98060e8f60ef27e604bb72d9ead0cae8d29f57d0
dreammaster
dreammaster at scummvm.org
Sat Jul 15 22:45:21 CEST 2017
This automated email contains information about 1 new commit which have been
pushed to the 'scummvm' repo located at https://github.com/scummvm/scummvm .
Summary:
98060e8f60 TITANIC: Fix locking stars in star control puzzle when Caps lock is on
Commit: 98060e8f60ef27e604bb72d9ead0cae8d29f57d0
https://github.com/scummvm/scummvm/commit/98060e8f60ef27e604bb72d9ead0cae8d29f57d0
Author: Paul Gilbert (dreammaster at scummvm.org)
Date: 2017-07-15T16:45:16-04:00
Commit Message:
TITANIC: Fix locking stars in star control puzzle when Caps lock is on
Changed paths:
engines/titanic/star_control/star_view.cpp
diff --git a/engines/titanic/star_control/star_view.cpp b/engines/titanic/star_control/star_view.cpp
index 55f40b1..0caa442 100644
--- a/engines/titanic/star_control/star_view.cpp
+++ b/engines/titanic/star_control/star_view.cpp
@@ -149,7 +149,7 @@ bool CStarView::KeyCharMsg(int key, CErrorCode *errorCode) {
FPose pose;
int matchedIndex = _starField ? _starField->getMatchedIndex() : -1;
- switch (key) {
+ switch (tolower(key)) {
case Common::KEYCODE_TAB:
if (_starField) {
toggleMode();
More information about the Scummvm-git-logs
mailing list