From 822f5716218d0652b091abcfdd9abc6655640c60 Mon Sep 17 00:00:00 2001 From: Isotarge Date: Sat, 5 Mar 2016 08:11:08 +1030 Subject: [PATCH] RAM Search: Fix unhandled exception Fixes an unhandled exception when beginning to type a negative number into the search box when display is set to float --- BizHawk.Client.EmuHawk/tools/Watch/WatchValueBox.cs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/BizHawk.Client.EmuHawk/tools/Watch/WatchValueBox.cs b/BizHawk.Client.EmuHawk/tools/Watch/WatchValueBox.cs index be4765ac65..f0733dcef5 100644 --- a/BizHawk.Client.EmuHawk/tools/Watch/WatchValueBox.cs +++ b/BizHawk.Client.EmuHawk/tools/Watch/WatchValueBox.cs @@ -686,6 +686,8 @@ namespace BizHawk.Client.EmuHawk case DisplayType.Float: if (Text.IsFloat()) { + if (Text == "-") + return 0; float val = float.Parse(Text); var bytes = BitConverter.GetBytes(val); return BitConverter.ToInt32(bytes, 0);