mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-22 22:00:39 -06:00
D3D: Migrate logging over to fmt
Migrates the logging over to the fmt-capable logger.
This commit is contained in:
@ -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 = {};
|
||||
|
Reference in New Issue
Block a user