[Scummvm-git-logs] scummvm master -> 027fa8238e9b6c8fd4187514694c97172d65b97e
sev-
sev at scummvm.org
Fri Jan 31 20:06:05 UTC 2020
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:
027fa8238e WINTERMUTE: Further Amiga compilation fixes
Commit: 027fa8238e9b6c8fd4187514694c97172d65b97e
https://github.com/scummvm/scummvm/commit/027fa8238e9b6c8fd4187514694c97172d65b97e
Author: Eugene Sandulenko (sev at scummvm.org)
Date: 2020-01-31T21:05:44+01:00
Commit Message:
WINTERMUTE: Further Amiga compilation fixes
Changed paths:
engines/wintermute/base/base_object.cpp
engines/wintermute/ui/ui_window.cpp
diff --git a/engines/wintermute/base/base_object.cpp b/engines/wintermute/base/base_object.cpp
index cce3561..8f3cfa6 100644
--- a/engines/wintermute/base/base_object.cpp
+++ b/engines/wintermute/base/base_object.cpp
@@ -1057,7 +1057,7 @@ bool BaseObject::handleKeypress(Common::Event *event, bool printable) {
//////////////////////////////////////////////////////////////////////////
-bool BaseObject::handleMouseWheel(int delta) {
+bool BaseObject::handleMouseWheel(int32 delta) {
return false;
}
diff --git a/engines/wintermute/ui/ui_window.cpp b/engines/wintermute/ui/ui_window.cpp
index c8496c1..8a5222f 100644
--- a/engines/wintermute/ui/ui_window.cpp
+++ b/engines/wintermute/ui/ui_window.cpp
@@ -1220,7 +1220,7 @@ bool UIWindow::handleKeypress(Common::Event *event, bool printable) {
//////////////////////////////////////////////////////////////////////////
-bool UIWindow::handleMouseWheel(int Delta) {
+bool UIWindow::handleMouseWheel(int32 Delta) {
if (_focusedWidget) {
return _focusedWidget->handleMouseWheel(Delta);
} else {
More information about the Scummvm-git-logs
mailing list