mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-05-03 17:58:34 +00:00
Silence a few "zero as null pointer" warnings.
This commit is contained in:
parent
60e9301f40
commit
4d931c16ad
4 changed files with 5 additions and 5 deletions
|
@ -2285,7 +2285,7 @@ const char* GekkoDisassembler::GetGPRName(u32 index)
|
|||
if (index < 32)
|
||||
return gprnames[index];
|
||||
|
||||
return 0;
|
||||
return nullptr;
|
||||
}
|
||||
|
||||
static const char* fprnames[] =
|
||||
|
@ -2301,5 +2301,5 @@ const char* GekkoDisassembler::GetFPRName(u32 index)
|
|||
if (index < 32)
|
||||
return fprnames[index];
|
||||
|
||||
return 0;
|
||||
return nullptr;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue