Merge pull request #3580 from daniellimws/common-fmt
common: Migrate logging macros
This commit is contained in:
commit
a9544ca015
24 changed files with 132 additions and 134 deletions
|
@ -265,7 +265,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
|
||||
|
@ -278,7 +278,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(0x10); // Gas related registers
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue