fix fmt compilation error

This commit is contained in:
SimoneN64
2023-06-05 11:28:36 +02:00
parent f92c65326c
commit 304919de76
2 changed files with 3 additions and 3 deletions

View File

@@ -319,7 +319,7 @@ ExceptionCode GetTLBExceptionCode(TLBError error, TLBAccessType accessType) {
return accessType == LOAD ?
ExceptionCode::AddressErrorLoad : ExceptionCode::AddressErrorStore;
default:
Util::panic("Getting TLB exception for unknown error code! ({})\n", error);
Util::panic("Getting TLB exception for unknown error code! ({})\n", static_cast<u8>(error));
}
}