mirror of
https://git.ryujinx.app/ryubing/ryujinx.git
synced 2026-05-23 04:52:08 +00:00
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:
parent
882c2d55d2
commit
286b520f24
1 changed files with 1 additions and 2 deletions
|
|
@ -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}";
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue