[Scummvm-git-logs] scummvm master -> 1e479627eaac553765e50eef588e783f1002abab

dreammaster noreply at scummvm.org
Sun Oct 6 22:19:23 UTC 2024


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:
1e479627ea M4: RIDDLE: Implement mouse wheel cursor cycling


Commit: 1e479627eaac553765e50eef588e783f1002abab
    https://github.com/scummvm/scummvm/commit/1e479627eaac553765e50eef588e783f1002abab
Author: Paul Gilbert (dreammaster at scummvm.org)
Date: 2024-10-06T15:19:17-07:00

Commit Message:
M4: RIDDLE: Implement mouse wheel cursor cycling

Changed paths:
    engines/m4/riddle/hotkeys.cpp


diff --git a/engines/m4/riddle/hotkeys.cpp b/engines/m4/riddle/hotkeys.cpp
index aa308a0b340..4d49e7e64a1 100644
--- a/engines/m4/riddle/hotkeys.cpp
+++ b/engines/m4/riddle/hotkeys.cpp
@@ -96,19 +96,19 @@ void Hotkeys::show_version(void *, void *) {
 }
 
 void Hotkeys::t_cb(void *, void *) {
-//	g_vars->_interface.t_cb();
+	g_vars->_interface.t_cb();
 }
 
 void Hotkeys::u_cb(void *, void *) {
-//	g_vars->_interface.u_cb();
+	g_vars->_interface.u_cb();
 }
 
 void Hotkeys::l_cb(void *, void *) {
-//	g_vars->_interface.l_cb();
+	g_vars->_interface.l_cb();
 }
 
 void Hotkeys::a_cb(void *, void *) {
-//	g_vars->_interface.a_cb();
+	g_vars->_interface.a_cb();
 }
 
 } // namespace Riddle




More information about the Scummvm-git-logs mailing list