From e26ae5f63c0ba94bac789c8293e916965b1ef32c Mon Sep 17 00:00:00 2001 From: Anton Kochkov Date: Thu, 17 Aug 2023 16:04:38 +0800 Subject: [PATCH] visual: remove `prc=a` mode (#3758) --- librz/core/tui/modes.c | 2 +- librz/core/tui/modes.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/librz/core/tui/modes.c b/librz/core/tui/modes.c index f9d943de30..517d8b517b 100644 --- a/librz/core/tui/modes.c +++ b/librz/core/tui/modes.c @@ -42,7 +42,7 @@ const char *print3Formats[PRINT_3_FORMATS] = { // not used at all. its handled }; const char *print4Formats[PRINT_4_FORMATS] = { - "prc", "prc=a", "pxAv", "pxx", "p=e $r-2", "pk 64" + "prc", "pxA", "pxx", "p=e $r-2", "pk 64" }; const char *print5Formats[PRINT_5_FORMATS] = { diff --git a/librz/core/tui/modes.h b/librz/core/tui/modes.h index f47d747109..384f6de585 100644 --- a/librz/core/tui/modes.h +++ b/librz/core/tui/modes.h @@ -16,7 +16,7 @@ extern const char *printfmtColumns[NPF]; // to print the stack in the debugger view #define PRINT_HEX_FORMATS 10 #define PRINT_3_FORMATS 2 -#define PRINT_4_FORMATS 7 +#define PRINT_4_FORMATS 5 #define PRINT_5_FORMATS 8 extern const char *printHexFormats[PRINT_HEX_FORMATS];