Small compile fix

git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@1949 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
nakeee 2009-01-20 11:44:32 +00:00
parent 0c9a1a9595
commit 6730645dd8
1 changed files with 2 additions and 2 deletions

View File

@ -301,12 +301,12 @@ void ConfigBox::ToBlank(bool ToBlank)
if(ToBlank)
{
for(int i = IDB_ANALOG_MAIN_X; i <= IDB_BUTTONHALFPRESS; i++)
if(GetButtonText(i) == "-1") SetButtonText(i, "");
if(GetButtonText(i).toAscii() == "-1") SetButtonText(i, "");
}
else
{
for(int i = IDB_ANALOG_MAIN_X; i <= IDB_BUTTONHALFPRESS; i++)
if(GetButtonText(i) == "") SetButtonText(i, "-1");
if(GetButtonText(i).empty()) SetButtonText(i, "-1");
}
}
//////////////////////////////////