mirror of
https://github.com/yuzu-emu/yuzu-android.git
synced 2025-06-13 01:37:56 -05:00
General: Replace NULL and '0' usages with nullptr where applicable
This commit is contained in:
@ -206,7 +206,7 @@ static const char *opcode_names[] = {
|
||||
"swi",
|
||||
"tst",
|
||||
|
||||
NULL
|
||||
nullptr
|
||||
};
|
||||
|
||||
// Indexed by the shift type (bits 6-5)
|
||||
@ -399,7 +399,7 @@ std::string ARM_Disasm::Disassemble(u32 addr, u32 insn)
|
||||
default:
|
||||
return "Error";
|
||||
}
|
||||
return NULL;
|
||||
return nullptr;
|
||||
}
|
||||
|
||||
std::string ARM_Disasm::DisassembleALU(Opcode opcode, u32 insn)
|
||||
|
Reference in New Issue
Block a user