Skip to content

Commit

Permalink
Merge pull request #12012 from vnctdj/pngScreenshots
Browse files Browse the repository at this point in the history
Enable PNG screenshots for all platforms
  • Loading branch information
hrydgard committed May 2, 2019
2 parents 54bb78f + 6cbf4cf commit 417b3ba
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions UI/GameSettingsScreen.cpp
Expand Up @@ -805,9 +805,9 @@ void GameSettingsScreen::CreateViews() {
systemSettings->Add(new ChoiceWithValueDisplay(&g_Config.sNickName, sy->T("Change Nickname"), (const char *)nullptr))->OnClick.Handle(this, &GameSettingsScreen::OnChangeNickname);
#endif

#if defined(_WIN32) || (defined(USING_QT_UI) && !defined(MOBILE_DEVICE))
// Screenshot functionality is not yet available on non-Windows/non-Qt
systemSettings->Add(new CheckBox(&g_Config.bScreenshotsAsPNG, sy->T("Screenshots as PNG")));

#if defined(_WIN32) || (defined(USING_QT_UI) && !defined(MOBILE_DEVICE))
systemSettings->Add(new CheckBox(&g_Config.bDumpFrames, sy->T("Record Display")));
systemSettings->Add(new CheckBox(&g_Config.bUseFFV1, sy->T("Use Lossless Video Codec (FFV1)")));
systemSettings->Add(new CheckBox(&g_Config.bDumpAudio, sy->T("Record Audio")));
Expand Down

0 comments on commit 417b3ba

Please sign in to comment.