[Scummvm-git-logs] scummvm master -> 30b121f4e9926eacbfa92d49fe7fdb4a631a8b95

criezy noreply at scummvm.org
Sun Aug 20 20:30:55 UTC 2023


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:
30b121f4e9 IOS: Support keyboard as hardware input so that controls can be mapped by default


Commit: 30b121f4e9926eacbfa92d49fe7fdb4a631a8b95
    https://github.com/scummvm/scummvm/commit/30b121f4e9926eacbfa92d49fe7fdb4a631a8b95
Author: yoshisuga (yoshi.sugawara at gmail.com)
Date: 2023-08-20T21:30:52+01:00

Commit Message:
IOS: Support keyboard as hardware input so that controls can be mapped by default

Changed paths:
    backends/platform/ios7/ios7_osys_misc.mm


diff --git a/backends/platform/ios7/ios7_osys_misc.mm b/backends/platform/ios7/ios7_osys_misc.mm
index e7193f16a5f..7a99c2b8196 100644
--- a/backends/platform/ios7/ios7_osys_misc.mm
+++ b/backends/platform/ios7/ios7_osys_misc.mm
@@ -226,6 +226,8 @@ Common::HardwareInputSet *OSystem_iOS7::getHardwareInputSet() {
 		inputSet->addHardwareInputSet(new JoystickHardwareInputSet(defaultJoystickButtons, defaultJoystickAxes));
 	}
 
+	inputSet->addHardwareInputSet(new KeyboardHardwareInputSet(defaultKeys, defaultModifiers));
+  
 	return inputSet;
 }
 




More information about the Scummvm-git-logs mailing list