From 72b1e1222a6f6609970046892031016ddd3c3c54 Mon Sep 17 00:00:00 2001 From: pasky1382 Date: Wed, 26 Sep 2012 04:30:35 +0000 Subject: [PATCH] Minor edit: Renamed the boolean so that it makes more sense. --- BizHawk.MultiClient/tools/HexEditor.cs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/BizHawk.MultiClient/tools/HexEditor.cs b/BizHawk.MultiClient/tools/HexEditor.cs index 601db58039..7d45e969f0 100644 --- a/BizHawk.MultiClient/tools/HexEditor.cs +++ b/BizHawk.MultiClient/tools/HexEditor.cs @@ -1941,7 +1941,7 @@ namespace BizHawk.MultiClient return values; } - public void FindNext(string value, Boolean last) + public void FindNext(string value, Boolean wrap) { int found = -1; @@ -1987,13 +1987,13 @@ namespace BizHawk.MultiClient FindStr = search; MemoryViewerBox.Focus(); } - else if (last == false) // Search the opposite direction if not found + else if (wrap == false) // Search the opposite direction if not found { FindPrev(value, true); } } - public void FindPrev(string value, Boolean last) + public void FindPrev(string value, Boolean wrap) { int found = -1; @@ -2035,7 +2035,7 @@ namespace BizHawk.MultiClient FindStr = search; MemoryViewerBox.Focus(); } - else if (last == false) // Search the opposite direction if not found + else if (wrap == false) // Search the opposite direction if not found { FindPrev(value, true); }