mirror of
https://github.com/cemu-project/Cemu.git
synced 2025-07-11 09:18:30 +12:00
Code cleanup
This commit is contained in:
parent
9523993a24
commit
ff9d180154
26 changed files with 105 additions and 131 deletions
|
@ -256,7 +256,7 @@ void DisasmCtrl::DrawDisassemblyLine(wxDC& dc, const wxPoint& linePosition, MPTR
|
|||
{
|
||||
sint32 sImm = disasmInstr.operand[o].immS32;
|
||||
if (disasmInstr.operand[o].immWidth == 16 && (sImm & 0x8000))
|
||||
sImm |= 0xFFFF0000;
|
||||
sImm |= (sint32)0xFFFF0000;
|
||||
|
||||
if ((sImm > -10 && sImm < 10) || forceDecDisplay)
|
||||
string = wxString::Format("%d", sImm);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue