Minow tweaks on Big Picture

Removing two strings that were remnants of DuckStation for Android.
This commit is contained in:
Víctor "IlDucci 2023-09-24 13:15:50 +00:00 committed by Connor McLaughlin
parent 6a671a5cd1
commit 8b84b0403b
1 changed files with 2 additions and 4 deletions

View File

@ -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;
@ -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;