[Scummvm-git-logs] scummvm master -> 993b013ad9a500cb150bb9aa5b03c2e1c309f5f9
dreammaster
dreammaster at scummvm.org
Tue Aug 1 02:15:30 CEST 2017
This automated email contains information about 2 new commits which have been
pushed to the 'scummvm' repo located at https://github.com/scummvm/scummvm .
Summary:
0614174c5f TITANIC: Star View: Added keyboard key to look up
993b013ad9 Merge pull request #978 from dafioram/Titanic-star-keybrdlookup
Commit: 0614174c5f079c422d42ac82b11ce59ec6105f9c
https://github.com/scummvm/scummvm/commit/0614174c5f079c422d42ac82b11ce59ec6105f9c
Author: David Fioramonti (dafioram at gmail.com)
Date: 2017-07-30T09:23:41-07:00
Commit Message:
TITANIC: Star View: Added keyboard key to look up
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 e02152d..97752c2 100644
--- a/engines/titanic/star_control/star_view.cpp
+++ b/engines/titanic/star_control/star_view.cpp
@@ -227,6 +227,15 @@ bool CStarView::KeyCharMsg(int key, CErrorCode *errorCode) {
}
break;
+ case Common::KEYCODE_SLASH:
+ if (matchedIndex == -1) {
+ pose.setRotationMatrix(X_AXIS, 1.0);
+ _camera.proc22(pose);
+ _camera.updatePosition(errorCode);
+ return true;
+ }
+ break;
+
default:
break;
}
Commit: 993b013ad9a500cb150bb9aa5b03c2e1c309f5f9
https://github.com/scummvm/scummvm/commit/993b013ad9a500cb150bb9aa5b03c2e1c309f5f9
Author: Paul Gilbert (dreammaster at scummvm.org)
Date: 2017-07-31T20:15:27-04:00
Commit Message:
Merge pull request #978 from dafioram/Titanic-star-keybrdlookup
TITANIC: Star View: Added keyboard key to look up
Changed paths:
engines/titanic/star_control/star_view.cpp
More information about the Scummvm-git-logs
mailing list