From 3127e6d36c78e4f55a32a2dbfe10972a011d1342 Mon Sep 17 00:00:00 2001 From: adelikat Date: Sun, 18 May 2014 19:40:21 +0000 Subject: [PATCH] Ram tools - for floats, use sci notation, rather than spooky rounding --- BizHawk.Client.Common/tools/Watch.cs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/BizHawk.Client.Common/tools/Watch.cs b/BizHawk.Client.Common/tools/Watch.cs index 974dfb95f7..2152fa6048 100644 --- a/BizHawk.Client.Common/tools/Watch.cs +++ b/BizHawk.Client.Common/tools/Watch.cs @@ -902,7 +902,8 @@ namespace BizHawk.Client.Common case DisplayType.Float: var bytes = BitConverter.GetBytes(val); var _float = BitConverter.ToSingle(bytes, 0); - return string.Format("{0:0.######}", _float); + //return string.Format("{0:0.######}", _float); + return _float.ToString(); // adelikat: decided that we like sci notation instead of spooky rounding } }