Skip to content

Commit

Permalink
Minow tweaks on Big Picture
Browse files Browse the repository at this point in the history
Removing two strings that were remnants of DuckStation for Android.
  • Loading branch information
IlDucci authored and stenzek committed Sep 24, 2023
1 parent 6a671a5 commit 8b84b04
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions pcsx2/ImGui/FullscreenUI.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -4920,8 +4920,7 @@ void FullscreenUI::DrawPauseMenu(MainWindowType type)

void FullscreenUI::InitializePlaceholderSaveStateListEntry(SaveStateListEntry* li, s32 slot)
{
li->title = (slot == 0) ? FSUI_STR("Quick Save Slot") :
fmt::format("{}##game_slot_{}", TinyString::from_fmt(FSUI_FSTR("Save Slot {0}"), slot), slot);
li->title = fmt::format("{}##game_slot_{}", TinyString::from_fmt(FSUI_FSTR("Save Slot {0}"), slot), slot);
li->summary = FSUI_STR("No save present in this slot.");
li->path = {};
li->timestamp = 0;
Expand All @@ -4940,8 +4939,7 @@ bool FullscreenUI::InitializeSaveStateListEntry(
return false;
}

li->title = (slot == 0) ? FSUI_STR("Quick Save Slot") :
fmt::format("{}##game_slot_{}", TinyString::from_fmt(FSUI_FSTR("Save Slot {0}"), slot), slot);
li->title = fmt::format("{}##game_slot_{}", TinyString::from_fmt(FSUI_FSTR("Save Slot {0}"), slot), slot);
li->summary = fmt::format(FSUI_FSTR("Saved {}"), TimeToPrintableString(sd.ModificationTime));
li->slot = slot;
li->timestamp = sd.ModificationTime;
Expand Down

0 comments on commit 8b84b04

Please sign in to comment.