Skip to content

Commit

Permalink
Merge pull request #15521 from unknownbrackets/texreplace
Browse files Browse the repository at this point in the history
Replacement: Allow texture dump without replace
  • Loading branch information
hrydgard authored May 3, 2022
2 parents 2b68d35 + 92bad4f commit 28532fe
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion UI/GameSettingsScreen.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1778,7 +1778,7 @@ void DeveloperToolsScreen::CreateViews() {
list->Add(new Choice(dev->T("Load language ini")))->OnClick.Handle(this, &DeveloperToolsScreen::OnLoadLanguageIni);
list->Add(new Choice(dev->T("Save language ini")))->OnClick.Handle(this, &DeveloperToolsScreen::OnSaveLanguageIni);
list->Add(new ItemHeader(dev->T("Texture Replacement")));
list->Add(new CheckBox(&g_Config.bSaveNewTextures, dev->T("Save new textures")))->SetEnabledPtr(&g_Config.bReplaceTextures);
list->Add(new CheckBox(&g_Config.bSaveNewTextures, dev->T("Save new textures")));
list->Add(new CheckBox(&g_Config.bReplaceTextures, dev->T("Replace textures")));

// Makes it easy to get savestates out of an iOS device. The file listing shown in MacOS doesn't allow
Expand Down

0 comments on commit 28532fe

Please sign in to comment.