Fixed warning about mixing signed and unsigned.

git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@620 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
Maarten ter Huurne 2008-09-22 23:31:12 +00:00
parent 6c68afb171
commit 4797d01920
1 changed files with 1 additions and 1 deletions

View File

@ -53,7 +53,7 @@ void bcx(UGeckoInstruction _inst)
const bool only_condition_check = ((_inst.BO >> 2) & 1);
int ctr_check = ((CTR != 0) ^ (_inst.BO >> 1)) & 1;
bool counter = only_condition_check || ctr_check;
bool condition = only_counter_check || (GetCRBit(_inst.BI) == (int)true_false);
bool condition = only_counter_check || (GetCRBit(_inst.BI) == u32(true_false));
if (counter && condition)
{