@@ -1994,7 +1994,10 @@ void FullscreenUI::DrawSummarySettingsPage(bool show_localized_titles)
19941994 {
19951995 if (MenuButton (FSUI_ICONVSTR (ICON_FA_WINDOW_MAXIMIZE, " Title" ),
19961996 s_settings_locals.game_settings_entry ->GetDisplayTitle (show_localized_titles), true ))
1997- CopyTextToClipboard (FSUI_STR (" Game title copied to clipboard." ), s_settings_locals.game_settings_entry ->title );
1997+ {
1998+ CopyTextToClipboard (FSUI_STR (" Game title copied to clipboard." ),
1999+ s_settings_locals.game_settings_entry ->GetDisplayTitle (show_localized_titles));
2000+ }
19982001 if (MenuButton (FSUI_ICONVSTR (ICON_FA_PAGER, " Serial" ), s_settings_locals.game_settings_entry ->serial , true ))
19992002 CopyTextToClipboard (FSUI_STR (" Game serial copied to clipboard." ), s_settings_locals.game_settings_entry ->serial );
20002003 if (MenuButton (FSUI_ICONVSTR (ICON_FA_COMPACT_DISC, " Type" ),
@@ -2704,7 +2707,7 @@ void FullscreenUI::DrawEmulationSettingsPage()
27042707 };
27052708 static constexpr const std::array emulation_speed_titles = {
27062709 FSUI_NSTR (" Unlimited" ),
2707- " 10% [6 FPS (NTSC) / 5 FPS (PAL)]" ,
2710+ FSUI_NSTR ( " 10% [6 FPS (NTSC) / 5 FPS (PAL)]" ) ,
27082711 FSUI_NSTR (" 20% [12 FPS (NTSC) / 10 FPS (PAL)]" ),
27092712 FSUI_NSTR (" 30% [18 FPS (NTSC) / 15 FPS (PAL)]" ),
27102713 FSUI_NSTR (" 40% [24 FPS (NTSC) / 20 FPS (PAL)]" ),
0 commit comments