From f3db75a05b5758658ca55caba4443ad400dd8604 Mon Sep 17 00:00:00 2001 From: Ryan Fleury Date: Fri, 19 Jan 2024 22:13:04 -0800 Subject: [PATCH] fix decimal enum value display --- src/df/core/df_core.c | 2 +- src/raddbg/raddbg.h | 3 +++ 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/src/df/core/df_core.c b/src/df/core/df_core.c index fbf10fc5..f7f95fe5 100644 --- a/src/df/core/df_core.c +++ b/src/df/core/df_core.c @@ -4730,7 +4730,7 @@ df_string_from_simple_typed_eval(Arena *arena, TG_Graph *graph, RADDBG_Parsed *r { result = push_str8f(arena, "0x%I64x (%S)", eval.imm_u64, constant_name); } - else if(constant_name.size != 0) + else { result = push_str8f(arena, "0x%I64x (%I64u)", eval.imm_u64, eval.imm_u64); } diff --git a/src/raddbg/raddbg.h b/src/raddbg/raddbg.h index 354b5b63..f85b9781 100644 --- a/src/raddbg/raddbg.h +++ b/src/raddbg/raddbg.h @@ -29,6 +29,9 @@ //////////////////////////////// //~ rjf: Hot, Medium Priority Tasks (Low-Hanging-Fruit Features, UI Jank, Cleanup) // +// [ ] escaping in config files - breakpoint labels etc. +// [ ] focus changing between query bar & panel content via mouse +// // [ ] ** while typing, "Alt" Windows menu things should not happen // // [ ] visualize conversion failures