From 7381a02dae2bc7d750e650fb5421a7da68004e45 Mon Sep 17 00:00:00 2001 From: TheTechnician27 Date: Thu, 9 Jan 2025 20:07:41 -0600 Subject: [PATCH] SIO: Fix save state OSD warning formatting --- pcsx2/SIO/Sio.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pcsx2/SIO/Sio.cpp b/pcsx2/SIO/Sio.cpp index 9dd22932f8320..3160e57b4257c 100644 --- a/pcsx2/SIO/Sio.cpp +++ b/pcsx2/SIO/Sio.cpp @@ -162,6 +162,6 @@ void MemcardBusy::CheckSaveStateDependency() if (g_FrameCount - sioLastFrameMcdBusy > NUM_FRAMES_BEFORE_SAVESTATE_DEPENDENCY_WARNING) { Host::AddIconOSDMessage("MemcardBusy", ICON_PF_MEMORY_CARD, - TRANSLATE_SV("MemoryCard", "The virtual console hasn't saved to your memory card for quite some time. Savestates should not be used in place of in-game saves."), Host::OSD_INFO_DURATION); + TRANSLATE_SV("MemoryCard", "The virtual console hasn't saved to your memory card in a long time.\nSavestates should not be used in place of in-game saves."), Host::OSD_INFO_DURATION); } }