Remove remaining instances of stricmp

This commit is contained in:
Kingcom 2013-07-01 10:01:49 +02:00
parent e3d3d75e38
commit c24433b1e2
4 changed files with 4 additions and 4 deletions

View File

@ -46,7 +46,7 @@ public:
}
}
if (stricmp(str,"pc") == 0)
if (strcasecmp(str,"pc") == 0)
{
referenceIndex = 32;
return true;

View File

@ -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;

View File

@ -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

@ -1 +1 @@
Subproject commit 033a3437fbf8894dbd617eb2447b1e55cdc57a61
Subproject commit 42877f5a1fd94a95a4a3df5d47abeae96d6f9ca9