externals: Update fmt. (#7015)
This commit is contained in:
parent
d0b8974845
commit
327a00b4d5
7 changed files with 26 additions and 24 deletions
|
@ -248,7 +248,7 @@ void Source::ParseConfig(SourceConfiguration::Configuration& config,
|
|||
LOG_ERROR(Audio_DSP,
|
||||
"Skipping embedded buffer sample! Game passed in improper value for length. "
|
||||
"addr {:X} length {:X}",
|
||||
config.physical_address, config.length);
|
||||
static_cast<u32>(config.physical_address), static_cast<u32>(config.length));
|
||||
} else {
|
||||
state.input_queue.emplace(Buffer{
|
||||
config.physical_address,
|
||||
|
@ -285,7 +285,7 @@ void Source::ParseConfig(SourceConfiguration::Configuration& config,
|
|||
LOG_ERROR(Audio_DSP,
|
||||
"Skipping buffer queue sample! Game passed in improper value for "
|
||||
"length. addr {:X} length {:X}",
|
||||
b.physical_address, b.length);
|
||||
static_cast<u32>(b.physical_address), static_cast<u32>(b.length));
|
||||
} else {
|
||||
state.input_queue.emplace(Buffer{
|
||||
b.physical_address,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue