Skip to content

Commit

Permalink
Merge pull request Aloshi#791 from cmitu/fixup1
Browse files Browse the repository at this point in the history
guis: fix wrong dialog title for video resolution
  • Loading branch information
pjft authored May 2, 2022
2 parents e26fa8d + 4e70a24 commit 25971d2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion es-app/src/guis/GuiVideoScreensaverOptions.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ GuiVideoScreensaverOptions::GuiVideoScreensaverOptions(Window* window, const cha
addSaveFunc([ss_video_mute] { Settings::getInstance()->setBool("ScreenSaverVideoMute", ss_video_mute->getState()); });


auto ss_vlc_resolution = std::make_shared< OptionListComponent<std::string> >(mWindow, "GAME INFO ALIGNMENT", false);
auto ss_vlc_resolution = std::make_shared< OptionListComponent<std::string> >(mWindow, "VIDEO RESOLUTION", false);
std::vector<std::string> vlc_res;
vlc_res.push_back("original"); // renders at original video resolution, stretched to fit screen
vlc_res.push_back("low"); // 25% of screen resolution
Expand Down

0 comments on commit 25971d2

Please sign in to comment.