mirror of
https://github.com/hrydgard/ppsspp.git
synced 2025-04-02 11:01:50 -04:00
Fix some switch/case warnings.
This commit is contained in:
parent
edb4472927
commit
e99cc01976
1 changed files with 4 additions and 0 deletions
|
@ -359,6 +359,8 @@ bool CMipsInstruction::Validate()
|
|||
}
|
||||
Vars.Immediate &= 0x03FFFFFF;
|
||||
break;
|
||||
case MIPS_NOIMMEDIATE:
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -421,6 +423,8 @@ void CMipsInstruction::Encode()
|
|||
case MIPS_IMMEDIATE26:
|
||||
encoding |= (Vars.Immediate & 0x03FFFFFF);
|
||||
break;
|
||||
case MIPS_NOIMMEDIATE:
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue