Skip to content

Commit eb9212b

Browse files
committed
fix string cmd query params
1 parent 0ac090c commit eb9212b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/raddbg/raddbg_core.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11309,7 +11309,7 @@ rd_regs_fill_slot_from_string(RD_RegSlot slot, String8 string)
1130911309
case RD_RegSlot_FilePath:
1131011310
{
1131111311
String8TxtPtPair pair = str8_txt_pt_pair_from_string(string);
11312-
if(pair.pt.line == 0)
11312+
if(pair.pt.line == 0 || slot == RD_RegSlot_String)
1131311313
{
1131411314
rd_regs()->string = push_str8_copy(rd_frame_arena(), string);
1131511315
}

0 commit comments

Comments
 (0)