Use the *correct* formatting string, skip calls to Math.Abs
This commit is contained in:
parent
2f3ac59c7a
commit
5412a74890
|
@ -200,7 +200,7 @@ namespace BizHawk.Client.Common
|
|||
/// Get a string representation of difference
|
||||
/// between current value and the previous one
|
||||
/// </summary>
|
||||
public override string Diff => $"{(byte)Math.Abs(_value - _previous):+G;-G;G}";
|
||||
public override string Diff => $"{_value - (short)_previous:+#;-#;0}";
|
||||
|
||||
/// <summary>
|
||||
/// Get the maximum possible value
|
||||
|
|
|
@ -231,7 +231,7 @@ namespace BizHawk.Client.Common
|
|||
/// Get a string representation of difference
|
||||
/// between current value and the previous one
|
||||
/// </summary>
|
||||
public override string Diff => (_previous - _value).ToString();
|
||||
public override string Diff => $"{_value - (long)_previous:+#;-#;0}";
|
||||
|
||||
/// <summary>
|
||||
/// Get the maximum possible value
|
||||
|
|
|
@ -214,7 +214,7 @@ namespace BizHawk.Client.Common
|
|||
/// Get a string representation of difference
|
||||
/// between current value and the previous one
|
||||
/// </summary>
|
||||
public override string Diff => $"{(ushort)Math.Abs(_value - _previous):+G;-G;G}";
|
||||
public override string Diff => $"{_value - (int)_previous:+#;-#;0}";
|
||||
|
||||
/// <summary>
|
||||
/// Get the maximum possible value
|
||||
|
|
Loading…
Reference in New Issue