From 21e25555d08850eb7f4351307813b30cab4d3bc4 Mon Sep 17 00:00:00 2001 From: Hathor86 Date: Thu, 10 Dec 2015 10:25:45 +0100 Subject: [PATCH] BytWatch ValueString property fix Call GetByte() instead of _value field (like other watches) --- BizHawk.Client.Common/tools/Watch/ByteWatch.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/BizHawk.Client.Common/tools/Watch/ByteWatch.cs b/BizHawk.Client.Common/tools/Watch/ByteWatch.cs index d9d592f0c4..f00ff2ac10 100644 --- a/BizHawk.Client.Common/tools/Watch/ByteWatch.cs +++ b/BizHawk.Client.Common/tools/Watch/ByteWatch.cs @@ -288,7 +288,7 @@ namespace BizHawk.Client.Common { get { - return FormatValue(_value); + return FormatValue(GetByte()); } }