FullscreenUI: Fix shared card name not disabling if unused

pull/3782/head
Stenzek 2 months ago
parent 4431915b41
commit 6f704d405b
No known key found for this signature in database

@ -4297,7 +4297,8 @@ void FullscreenUI::DrawMemoryCardSettingsPage()
TinyString title;
title.format("{}##card_name_{}", FSUI_ICONVSTR(ICON_FA_FILE, "Shared Card Name"), i);
if (MenuActionButton(title, FSUI_VSTR("The selected memory card image will be used in shared mode for this slot."),
path_value.has_value() ? path_value->view() : FSUI_VSTR("Use Global Setting"), is_shared))
path_value.has_value() ? path_value->view() : FSUI_VSTR("Use Global Setting"), false,
is_shared))
{
ChoiceDialogOptions options;
std::vector<std::string> names;

Loading…
Cancel
Save