diff options
| author | TryTwo <taolas@gmail.com> | 2025-09-20 15:04:07 -0700 |
|---|---|---|
| committer | TryTwo <taolas@gmail.com> | 2025-10-10 16:59:16 -0700 |
| commit | 3b11280c202ed4db7cedab7a2ddd4a5f364b4fd0 (patch) | |
| tree | d08337fc899173b64db7c9b267b9664325ee4377 /Source/Core/VideoCommon/OnScreenUI.cpp | |
| parent | 13ac38719753b95bb8463738b99481f3ffcca51a (diff) | |
Movie Window: Move customization options from Menu Bar to OSD pane, but add options to toggle the window and to open the OSD pane.
Add new setting to show/hide the Movie Window.
Diffstat (limited to 'Source/Core/VideoCommon/OnScreenUI.cpp')
| -rw-r--r-- | Source/Core/VideoCommon/OnScreenUI.cpp | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/Source/Core/VideoCommon/OnScreenUI.cpp b/Source/Core/VideoCommon/OnScreenUI.cpp index 4689bb6321..e741691417 100644 --- a/Source/Core/VideoCommon/OnScreenUI.cpp +++ b/Source/Core/VideoCommon/OnScreenUI.cpp @@ -255,11 +255,7 @@ void OnScreenUI::DrawImGui() // Create On-Screen-Messages void OnScreenUI::DrawDebugText() { - const bool show_movie_window = - Config::Get(Config::MAIN_SHOW_FRAME_COUNT) || Config::Get(Config::MAIN_SHOW_LAG) || - Config::Get(Config::MAIN_MOVIE_SHOW_INPUT_DISPLAY) || - Config::Get(Config::MAIN_MOVIE_SHOW_RTC) || Config::Get(Config::MAIN_MOVIE_SHOW_RERECORD); - if (show_movie_window) + if (Config::Get(Config::MAIN_MOVIE_SHOW_OSD)) { // Position under the FPS display. ImGui::SetNextWindowPos( |
