From f300edb5dee9479fbf9ebdb289b4a69dc6ca6440 Mon Sep 17 00:00:00 2001 From: tomcw Date: Fri, 2 Sep 2022 21:08:25 +0100 Subject: [PATCH] 1.30.11.1: point-release (#1127) --- resource/version.h | 2 +- source/Debugger/Debug.cpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/resource/version.h b/resource/version.h index bc1890a1..818de9f9 100644 --- a/resource/version.h +++ b/resource/version.h @@ -1,4 +1,4 @@ -#define APPLEWIN_VERSION 1,30,11,0 +#define APPLEWIN_VERSION 1,30,11,1 #define xstr(a) str(a) #define str(a) #a diff --git a/source/Debugger/Debug.cpp b/source/Debugger/Debug.cpp index 4e425d4d..a8a63e38 100644 --- a/source/Debugger/Debug.cpp +++ b/source/Debugger/Debug.cpp @@ -5415,7 +5415,7 @@ int _SearchMemoryFind( g_vMemorySearchResults.clear(); g_vMemorySearchResults.push_back( NO_6502_TARGET ); - uint32_t nAddress; // NB. can't be uint16_t, since may need to count to 0x10000 if searching up to and including 0xFFFF + uint32_t nAddress; // NB. can't be uint16_t, since need to count up to 0x10000 if nAddressEnd is 0xFFFF for ( nAddress = nAddressStart; nAddress <= nAddressEnd; nAddress++ ) { bool bMatchAll = true;