From 145fd0b7470ad3fb01e087893f49244a79e2dfb7 Mon Sep 17 00:00:00 2001 From: Nikhil Narayana Date: Mon, 30 May 2022 01:08:55 -0700 Subject: [PATCH] pull in project-slippi/Ishiiruka/commit/aa62980b0d8457c4dc81a79365bb99a6dcbe7c0e --- Source/Core/Core/Config/MainSettings.cpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Source/Core/Core/Config/MainSettings.cpp b/Source/Core/Core/Config/MainSettings.cpp index 56c5211147..8ce0fce148 100644 --- a/Source/Core/Core/Config/MainSettings.cpp +++ b/Source/Core/Core/Config/MainSettings.cpp @@ -116,7 +116,11 @@ const Info MAIN_ENABLE_SAVESTATES{{System::Main, "Core", "EnableSaveStates const Info MAIN_FULLSCREEN_DISPLAY_RES{ {System::Main, "Display", "FullscreenDisplayRes"}, "Auto"}; +#ifdef IS_PLAYBACK const Info MAIN_FULLSCREEN{{System::Main, "Display", "Fullscreen"}, false}; +#else +const Info MAIN_FULLSCREEN{{System::Main, "Display", "Fullscreen"}, true}; +#endif const Info MAIN_RENDER_TO_MAIN{{System::Main, "Display", "RenderToMain"}, false}; const Info MAIN_RENDER_WINDOW_XPOS{{System::Main, "Display", "RenderWindowXPos"}, -1}; const Info MAIN_RENDER_WINDOW_YPOS{{System::Main, "Display", "RenderWindowYPos"}, -1};