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
This commit is contained in:
Mabel 2026-05-17 15:15:09 -07:00 committed by sh0inx
parent 882c2d55d2
commit 286b520f24

View file

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