mirror of
https://git.ryujinx.app/ryubing/ryujinx.git
synced 2025-06-28 17:36:24 +02:00
Controller overlay duration config
This commit is contained in:
parent
e4a39ffa81
commit
7e40ca3d92
6 changed files with 67 additions and 2 deletions
|
@ -53,6 +53,8 @@ namespace Ryujinx.Ava.Systems.Configuration
|
|||
ShowOldUI.Value = shouldLoadFromFile ? cff.ShowTitleBar : ShowOldUI.Value; // Get from global config only
|
||||
EnableHardwareAcceleration.Value = shouldLoadFromFile ? cff.EnableHardwareAcceleration : EnableHardwareAcceleration.Value; // Get from global config only
|
||||
HideCursor.Value = cff.HideCursor;
|
||||
ControllerOverlayGameStartDuration.Value = cff.ControllerOverlayGameStartDuration;
|
||||
ControllerOverlayInputCycleDuration.Value = cff.ControllerOverlayInputCycleDuration;
|
||||
|
||||
Logger.EnableFileLog.Value = cff.EnableFileLog;
|
||||
Logger.EnableDebug.Value = cff.LoggingEnableDebug;
|
||||
|
@ -479,7 +481,12 @@ namespace Ryujinx.Ava.Systems.Configuration
|
|||
};
|
||||
}
|
||||
),
|
||||
(69, static cff => cff.SkipUserProfiles = false)
|
||||
(69, static cff => cff.SkipUserProfiles = false),
|
||||
(71, static cff =>
|
||||
{
|
||||
cff.ControllerOverlayGameStartDuration = 3;
|
||||
cff.ControllerOverlayInputCycleDuration = 2;
|
||||
})
|
||||
);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue