[Scummvm-git-logs] scummvm master -> dbc0a5ff091ae880bfa0098afbfc90796e178230

rsn8887 rsn8887 at users.noreply.github.com
Sun Jun 16 21:08:14 CEST 2019


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:
dbc0a5ff09 SWITCH: Make direct touch (pointer jumps to finger) the default


Commit: dbc0a5ff091ae880bfa0098afbfc90796e178230
    https://github.com/scummvm/scummvm/commit/dbc0a5ff091ae880bfa0098afbfc90796e178230
Author: rsn8887 (rsn8887 at users.noreply.github.com)
Date: 2019-06-16T14:07:46-05:00

Commit Message:
SWITCH: Make direct touch (pointer jumps to finger) the default

Changed paths:
    backends/platform/sdl/switch/switch.cpp


diff --git a/backends/platform/sdl/switch/switch.cpp b/backends/platform/sdl/switch/switch.cpp
index ae16f7f..ef44cb4 100644
--- a/backends/platform/sdl/switch/switch.cpp
+++ b/backends/platform/sdl/switch/switch.cpp
@@ -51,7 +51,7 @@ void OSystem_Switch::initBackend() {
 	ConfMan.registerDefault("gfx_mode", "2x");
 	ConfMan.registerDefault("filtering", true);
 	ConfMan.registerDefault("output_rate", 48000);
-	ConfMan.registerDefault("touchpad_mouse_mode", true);
+	ConfMan.registerDefault("touchpad_mouse_mode", false);
 
 	if (!ConfMan.hasKey("joystick_num")) {
 		ConfMan.setInt("joystick_num", 0);
@@ -72,7 +72,7 @@ void OSystem_Switch::initBackend() {
 		ConfMan.setInt("output_rate", 48000);
 	}
 	if (!ConfMan.hasKey("touchpad_mouse_mode")) {
-		ConfMan.setBool("touchpad_mouse_mode", true);
+		ConfMan.setBool("touchpad_mouse_mode", false);
 	}
 
 	// Create the savefile manager





More information about the Scummvm-git-logs mailing list