chore: Fix some compiler warnings. (#6578)

This commit is contained in:
Steveice10 2023-05-30 12:36:12 -07:00 committed by GitHub
parent a1d265325a
commit b45c7188c7
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 12 additions and 11 deletions

View file

@ -110,7 +110,7 @@ void ARMul_State::Reset() {
Reg[13] = 0x10000000;
Reg[15] = 0;
Cpsr = INTBITS | SVC32MODE;
Cpsr = static_cast<u32>(INTBITS) | SVC32MODE;
Mode = SVC32MODE;
Bank = SVCBANK;