changed FALSE/TRUE references to true/false. I think TRUE/FALSE is a windows thing only. It is causing compilation errors on iOS.

This commit is contained in:
techdragon.nguyen@gmail.com
2012-02-16 06:48:51 +00:00
parent 42421e9c89
commit 719fb41dc2
2 changed files with 6 additions and 6 deletions

View File

@@ -1329,8 +1329,8 @@ bool CardGui::FilterCard(MTGCard * _card,string filter)
}
if(cd.match(card))
return TRUE;
return FALSE;
return true;
return false;
}