From 7e0e3fa1432bdb1409af076ca5b3ebf55618b61f Mon Sep 17 00:00:00 2001 From: Peter Repukat Date: Tue, 20 Sep 2022 20:07:52 +0200 Subject: [PATCH] Default "MaxControllers" to 1 (most common use case) --- GlosSIConfig/qml/ShortcutProps.qml | 4 ++-- GlosSITarget/Settings.h | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/GlosSIConfig/qml/ShortcutProps.qml b/GlosSIConfig/qml/ShortcutProps.qml index 9f34bc5..889bc99 100644 --- a/GlosSIConfig/qml/ShortcutProps.qml +++ b/GlosSIConfig/qml/ShortcutProps.qml @@ -42,7 +42,7 @@ Item { maxFps: null, scale: null, icon: null, - maxControllers: 4, + maxControllers: 1, disableOverlay: false, realDeviceIds: false, allowDesktopConfig: false, @@ -63,7 +63,7 @@ Item { maxFps: null, scale: null, icon: null, - maxControllers: 4, + maxControllers: 1, disableOverlay: false, realDeviceIds: false, allowDesktopConfig: false, diff --git a/GlosSITarget/Settings.h b/GlosSITarget/Settings.h index e62f395..ffbc2a1 100644 --- a/GlosSITarget/Settings.h +++ b/GlosSITarget/Settings.h @@ -47,7 +47,7 @@ inline struct Window { } window; inline struct Controller { - int maxControllers = 4; + int maxControllers = 1; bool allowDesktopConfig = false; bool emulateDS4 = false; } controller;