From 286b520f24a3e873f77acee47255bc8b71b62060 Mon Sep 17 00:00:00 2001 From: Mabel Date: Sun, 17 May 2026 15:15:09 -0700 Subject: [PATCH] Format Update for Tomodachi Life: Living the Dream RPC Adds proper currency formatting for the dollars, $4,000.23 for example instead of $4000.23 Also removes an import that got added for literally no reason and has zero purpose being in that file, thanks Rider --- src/Ryujinx/Systems/PlayReport/PlayReports.Formatters.cs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/Ryujinx/Systems/PlayReport/PlayReports.Formatters.cs b/src/Ryujinx/Systems/PlayReport/PlayReports.Formatters.cs index 06d5741e4..ba8c158b1 100644 --- a/src/Ryujinx/Systems/PlayReport/PlayReports.Formatters.cs +++ b/src/Ryujinx/Systems/PlayReport/PlayReports.Formatters.cs @@ -1,6 +1,5 @@ using Gommon; using Humanizer; -using LibHac.Fs; using MsgPack; using System; using System.Buffers.Binary; @@ -1077,7 +1076,7 @@ namespace Ryujinx.Ava.Systems.PlayReport int fountainLevel = values.Matched[1].IntValue; int money = values.Matched[2].IntValue; - return $"Looking after {"Mii".ToQuantity(miiCount)}, Fountain Lvl. {fountainLevel}, ${((float)money / 100):F2}"; + return $"Looking after {"Mii".ToQuantity(miiCount)}, Fountain Lvl. {fountainLevel}, {((float)money / 100):C2}"; } } }