mirror of
https://github.com/hrydgard/ppsspp.git
synced 2024-11-24 05:49:58 +00:00
Remove remaining instances of stricmp
This commit is contained in:
parent
e3d3d75e38
commit
c24433b1e2
@ -46,7 +46,7 @@ public:
|
||||
}
|
||||
}
|
||||
|
||||
if (stricmp(str,"pc") == 0)
|
||||
if (strcasecmp(str,"pc") == 0)
|
||||
{
|
||||
referenceIndex = 32;
|
||||
return true;
|
||||
|
@ -261,7 +261,7 @@ void CtrlDisAsmView::parseDisasm(const char* disasm, char* opcode, char* argumen
|
||||
disasm += 2;
|
||||
for (int i = 0; i < 32; i++)
|
||||
{
|
||||
if (stricmp(jumpRegister+2,debugger->GetRegName(0,i)) == 0)
|
||||
if (strcasecmp(jumpRegister+2,debugger->GetRegName(0,i)) == 0)
|
||||
{
|
||||
branchRegister = i;
|
||||
break;
|
||||
|
@ -570,7 +570,7 @@ BOOL CDisasm::DlgProc(UINT message, WPARAM wParam, LPARAM lParam)
|
||||
int regNum = -1;
|
||||
for (int i = 0; i < 32; i++)
|
||||
{
|
||||
if (stricmp(reg+2,cpu->GetRegName(0,i)) == 0)
|
||||
if (strcasecmp(reg+2,cpu->GetRegName(0,i)) == 0)
|
||||
{
|
||||
regNum = i;
|
||||
break;
|
||||
|
2
native
2
native
@ -1 +1 @@
|
||||
Subproject commit 033a3437fbf8894dbd617eb2447b1e55cdc57a61
|
||||
Subproject commit 42877f5a1fd94a95a4a3df5d47abeae96d6f9ca9
|
Loading…
Reference in New Issue
Block a user