diff options
-rw-r--r-- | engines/titanic/star_control/star_view.cpp | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/engines/titanic/star_control/star_view.cpp b/engines/titanic/star_control/star_view.cpp index e02152de6b..97752c2f95 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; } |