HLE: Updated all uses of NULL to nullptr (to be C++11 compliant)
This commit is contained in:
parent
5365ca157d
commit
c95972275e
13 changed files with 239 additions and 239 deletions
|
@ -22,7 +22,7 @@ const FunctionDef* GetSVCInfo(u32 opcode) {
|
|||
u32 func_num = opcode & 0xFFFFFF; // 8 bits
|
||||
if (func_num > 0xFF) {
|
||||
ERROR_LOG(HLE,"unknown svc=0x%02X", func_num);
|
||||
return NULL;
|
||||
return nullptr;
|
||||
}
|
||||
return &g_module_db[0].func_table[func_num];
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue