I can't figure out if ghidra is doing messy stuff @ the decompiler or I did enough reversing this day.
Assembly:
00400b76 48 83 45 f8 01 ADD qword ptr [RBP + local_10],offset DAT_006020c1
where DAT_006020c1 is:
DAT_006020c1 XREF[2]:
006020c1 3c undefined1 3Ch
So it should be a regular byte addition between local_10 and 0x3C right?
Ghidra Decompiler output for this line:
local_10 = local_10 + 1;
So this makes no sense to me because we don't make an addition with 0x1?
Regards