Commit 285200b2 authored by Eric Pouech's avatar Eric Pouech Committed by Alexandre Julliard

winedbg: For stack info command, display information in 'a' format (instead of…

winedbg: For stack info command, display information in 'a' format (instead of 'x') to get word size machine (instead of forcing 32bit).
parent 3833600c
...@@ -50,7 +50,9 @@ void stack_info(void) ...@@ -50,7 +50,9 @@ void stack_info(void)
dbg_printf("Stack dump:\n"); dbg_printf("Stack dump:\n");
switch (lvalue.addr.Mode) switch (lvalue.addr.Mode)
{ {
case AddrModeFlat: /* 32-bit mode */ case AddrModeFlat: /* 32-bit or 64-bit mode */
memory_examine(&lvalue, 24, 'a');
break;
case AddrMode1632: /* 32-bit mode */ case AddrMode1632: /* 32-bit mode */
memory_examine(&lvalue, 24, 'x'); memory_examine(&lvalue, 24, 'x');
break; break;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment