log instead of printf

This commit is contained in:
Samuliak 2024-11-15 17:32:29 +01:00
parent 38cbd3e03a
commit a72136419c
No known key found for this signature in database
4 changed files with 11 additions and 11 deletions

View file

@ -32,7 +32,7 @@ bool MetalLayerHandle::AcquireDrawable()
m_drawable = m_layer->nextDrawable();
if (!m_drawable)
{
debug_printf("layer %p failed to acquire next drawable\n", this);
cemuLog_log(LogType::Force, "layer {} failed to acquire next drawable", (void*)this);
return false;
}