Replace format specifiers for all usages of ASSERT_MSG
This commit is contained in:
parent
59b8a1dbc2
commit
968569aa61
20 changed files with 53 additions and 53 deletions
|
@ -258,7 +258,7 @@ struct FramebufferRegs {
|
|||
return 4;
|
||||
}
|
||||
|
||||
ASSERT_MSG(false, "Unknown depth format %u", static_cast<u32>(format));
|
||||
ASSERT_MSG(false, "Unknown depth format {}", static_cast<u32>(format));
|
||||
}
|
||||
|
||||
// Returns the number of bits per depth component of the specified depth format
|
||||
|
@ -271,7 +271,7 @@ struct FramebufferRegs {
|
|||
return 24;
|
||||
}
|
||||
|
||||
ASSERT_MSG(false, "Unknown depth format %u", static_cast<u32>(format));
|
||||
ASSERT_MSG(false, "Unknown depth format {}", static_cast<u32>(format));
|
||||
}
|
||||
|
||||
INSERT_PADDING_WORDS(0x20);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue