Debugger: Fixed: Stack info shows correct return address if stack wraps around (#1457, PR #1459)

This commit is contained in:
Michael "Code Poet" Pohoreski
2026-01-01 03:42:51 -08:00
committed by GitHub
parent d661a5e276
commit 971217c8cb
3 changed files with 56 additions and 16 deletions

View File

@@ -52,7 +52,7 @@ Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
#define MAKE_VERSION(a,b,c,d) ((a<<24) | (b<<16) | (c<<8) | (d))
// See /docs/Debugger_Changelog.txt for full details
const int DEBUGGER_VERSION = MAKE_VERSION(2,9,4,2);
const int DEBUGGER_VERSION = MAKE_VERSION(2,9,4,3);
// Public _________________________________________________________________________________________