mirror of
https://github.com/yuzu-emu/yuzu-android.git
synced 2025-06-16 22:28:01 -05:00
general: Convert assertion macros over to be fmt-compatible
This commit is contained in:
@ -168,7 +168,7 @@ void Maxwell3D::ProcessQueryGet() {
|
||||
result = 0;
|
||||
break;
|
||||
default:
|
||||
UNIMPLEMENTED_MSG("Unimplemented query select type %u",
|
||||
UNIMPLEMENTED_MSG("Unimplemented query select type {}",
|
||||
static_cast<u32>(regs.query.query_get.select.Value()));
|
||||
}
|
||||
|
||||
@ -186,7 +186,7 @@ void Maxwell3D::ProcessQueryGet() {
|
||||
break;
|
||||
}
|
||||
default:
|
||||
UNIMPLEMENTED_MSG("Query mode %u not implemented",
|
||||
UNIMPLEMENTED_MSG("Query mode {} not implemented",
|
||||
static_cast<u32>(regs.query.query_get.mode.Value()));
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user