mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-21 05:09:34 -06:00
Common/StringUtil: Use simpler formatting for floats and doubles.
This commit is contained in:
@ -279,12 +279,12 @@ std::string ValueToString(u64 value)
|
||||
|
||||
std::string ValueToString(float value)
|
||||
{
|
||||
return fmt::format("{:#.9g}", value);
|
||||
return fmt::format("{:#}", value);
|
||||
}
|
||||
|
||||
std::string ValueToString(double value)
|
||||
{
|
||||
return fmt::format("{:#.17g}", value);
|
||||
return fmt::format("{:#}", value);
|
||||
}
|
||||
|
||||
std::string ValueToString(int value)
|
||||
|
Reference in New Issue
Block a user