From 253d4565f1483b19fb8a53f14d4f3a937389ca16 Mon Sep 17 00:00:00 2001 From: Ani Date: Wed, 18 Mar 2026 19:24:01 +0100 Subject: [PATCH] config: Enable start in fullscreen mode by default --- rpcs3/Emu/system_config.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rpcs3/Emu/system_config.h b/rpcs3/Emu/system_config.h index 3d7dba8798..11c350215d 100644 --- a/rpcs3/Emu/system_config.h +++ b/rpcs3/Emu/system_config.h @@ -347,7 +347,7 @@ struct cfg_root : cfg::node cfg::_bool autostart{ this, "Automatically start games after boot", true, true }; cfg::_bool autoexit{ this, "Exit RPCS3 when process finishes", false, true }; cfg::_bool autopause{ this, "Pause emulation on RPCS3 focus loss", false, true }; - cfg::_bool start_fullscreen{ this, "Start games in fullscreen mode", false, true }; + cfg::_bool start_fullscreen{ this, "Start games in fullscreen mode", true, true }; cfg::_bool prevent_display_sleep{ this, "Prevent display sleep while running games", true, true }; cfg::_bool show_trophy_popups{ this, "Show trophy popups", true, true }; cfg::_bool show_rpcn_popups{ this, "Show RPCN popups", true, true };