From 4c47ef2f3f2d9f5eb46cc50c0242b949d1304fa1 Mon Sep 17 00:00:00 2001 From: adelikat Date: Mon, 19 Jan 2015 02:58:18 +0000 Subject: [PATCH] Watch.cs - an remove an int cast I missed when converting domain size to long --- BizHawk.Client.Common/tools/Watch.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/BizHawk.Client.Common/tools/Watch.cs b/BizHawk.Client.Common/tools/Watch.cs index 76e2b03eb7..a3f10405b1 100644 --- a/BizHawk.Client.Common/tools/Watch.cs +++ b/BizHawk.Client.Common/tools/Watch.cs @@ -213,7 +213,7 @@ namespace BizHawk.Client.Common protected uint GetDWord() { - if (Global.CheatList.IsActive(_domain, (int)_address)) + if (Global.CheatList.IsActive(_domain, _address)) { return (uint)Global.CheatList.GetCheatValue(_domain, _address, WatchSize.DWord).Value; }