mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-30 04:38:49 +00:00
D3D: Migrate logging over to fmt
Migrates the logging over to the fmt-capable logger.
This commit is contained in:
parent
d7834bd6b4
commit
2345d5f98d
3 changed files with 7 additions and 7 deletions
|
@ -386,7 +386,7 @@ ID3D11BlendState* StateCache::Get(BlendingState state)
|
|||
{
|
||||
return m_blend.emplace(state.hex, std::move(res)).first->second.Get();
|
||||
}
|
||||
WARN_LOG(VIDEO, "Creating D3D blend state failed with an error: %x", hr);
|
||||
WARN_LOG_FMT(VIDEO, "Creating D3D blend state failed with an error: {:08X}", hr);
|
||||
}
|
||||
|
||||
D3D11_BLEND_DESC desc = {};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue