early-access version 2169

This commit is contained in:
pineappleEA
2021-10-30 08:33:17 +02:00
parent 3ba284c8c2
commit 89888d0ff7
9 changed files with 27 additions and 66 deletions

View File

@@ -485,7 +485,6 @@ void Config::ReadValues() {
Settings::values.log_filter =
sdl2_config->Get("Miscellaneous", Settings::values.log_filter.GetLabel(), "*:Trace");
ReadSetting("Miscellaneous", Settings::values.use_dev_keys);
ReadSetting("Miscellaneous", Settings::values.disable_screen_saver);
// Debugging
Settings::values.record_frame_times =

View File

@@ -414,10 +414,6 @@ log_filter = *:Trace
# 0 (default): Disabled, 1: Enabled
use_dev_keys =
# Disables the screensaver while yuzu is in session.
# 1 (defualt): Yes, 0 : No
disable_screen_saver =
[Debugging]
# Record frame time data, can be found in the log directory. Boolean value
record_frame_times =

View File

@@ -22,9 +22,6 @@ EmuWindow_SDL2::EmuWindow_SDL2(InputCommon::InputSubsystem* input_subsystem_, Co
LOG_CRITICAL(Frontend, "Failed to initialize SDL2! Exiting...");
exit(1);
}
if (!Settings::values.disable_screen_saver) {
SDL_EnableScreenSaver();
}
input_subsystem->Initialize();
SDL_SetMainReady();
}