Skip to content

Commit

Permalink
rdpq_debug: make sure rdpq_debug_disasm_cc returns uppercase strings
Browse files Browse the repository at this point in the history
  • Loading branch information
rasky committed Dec 30, 2024
1 parent a61b1db commit aa33a8d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/rdpq/rdpq_debug.c
Original file line number Diff line number Diff line change
Expand Up @@ -492,7 +492,7 @@ char* rdpq_debug_disasm_cc(uint64_t cc64)
cc_rgb_suba[cc.cyc[1].rgb.suba], cc_rgb_subb[cc.cyc[1].rgb.subb], cc_rgb_mul[cc.cyc[1].rgb.mul], cc_rgb_add[cc.cyc[1].rgb.add],
cc_alpha_addsub[cc.cyc[1].alpha.suba], cc_alpha_addsub[cc.cyc[1].alpha.subb], cc_alpha_mul[cc.cyc[1].alpha.mul], cc_alpha_addsub[cc.cyc[1].alpha.add]);
}
return strdup(buf);
return strupr(strdup(buf));
}

/** @brief Multiplication factor to convert a number to fixed point with precision n */
Expand Down

0 comments on commit aa33a8d

Please sign in to comment.