fix for linux compile error introduced in r2691

git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@2697 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
Shawn Hoffman 2009-03-20 19:34:36 +00:00
parent 482ea5c0e7
commit ee7ef367ff
1 changed files with 1 additions and 1 deletions

View File

@ -363,7 +363,7 @@ void ConfigBox::ToBlank(bool ToBlank)
{
for(int i = IDB_ANALOG_MAIN_X; i <= IDB_BUTTONHALFPRESS; i++)
#ifndef _WIN32
if(!strcmp(GetButtonText(i, j), "-1")) SetButtonText(i, "", j);
if(!strcmp(GetButtonText(i, j).ToAscii(), "-1")) SetButtonText(i, "", j);
#else
if(GetButtonText(i, j) == "-1") SetButtonText(i, "", j);
#endif