aboutsummaryrefslogtreecommitdiff
path: root/engines/titanic/core
diff options
context:
space:
mode:
authorPaul Gilbert2016-11-01 22:30:21 -0400
committerPaul Gilbert2016-11-01 22:30:21 -0400
commit0f4ca41dad11b97bc563f55b354db6a8006478a9 (patch)
treecec4555a9ab6389f803476b4e1f1a5d4848f6fc9 /engines/titanic/core
parent088cc0bff8cd39ddbe829867fd26cd5ba4a4aaba (diff)
downloadscummvm-rg350-0f4ca41dad11b97bc563f55b354db6a8006478a9.tar.gz
scummvm-rg350-0f4ca41dad11b97bc563f55b354db6a8006478a9.tar.bz2
scummvm-rg350-0f4ca41dad11b97bc563f55b354db6a8006478a9.zip
TITANIC: Add support for mouse wheel scrolling conversations log
Diffstat (limited to 'engines/titanic/core')
-rw-r--r--engines/titanic/core/saveable_object.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/engines/titanic/core/saveable_object.cpp b/engines/titanic/core/saveable_object.cpp
index 7522a34737..c4fdb494a1 100644
--- a/engines/titanic/core/saveable_object.cpp
+++ b/engines/titanic/core/saveable_object.cpp
@@ -835,6 +835,7 @@ DEFFN(CMouseDragMsg);
DEFFN(CMouseDragStartMsg);
DEFFN(CMouseDragMoveMsg);
DEFFN(CMouseDragEndMsg);
+DEFFN(CMouseWheelMsg);
DEFFN(CMoveToStartPosMsg);
DEFFN(CMovieEndMsg);
DEFFN(CMovieFrameMsg);
@@ -1426,6 +1427,7 @@ void CSaveableObject::initClassList() {
ADDFN(CMouseDragStartMsg, CMouseDragMsg);
ADDFN(CMouseDragMoveMsg, CMouseDragMsg);
ADDFN(CMouseDragEndMsg, CMouseDragMsg);
+ ADDFN(CMouseWheelMsg, CMouseMsg);
ADDFN(CMoveToStartPosMsg, CMessage);
ADDFN(CMovieEndMsg, CMessage);
ADDFN(CMovieFrameMsg, CMessage);