mirror of
https://github.com/baldurk/renderdoc.git
synced 2026-05-29 21:30:53 +00:00
Fix string formatting of type name in warning
This commit is contained in:
@@ -243,7 +243,8 @@ void DoSerialiseViaResourceId(SerialiserType &ser, type &el)
|
||||
{
|
||||
// It can be OK for a resource to have no live equivalent if the capture decided its not
|
||||
// needed, which some APIs do fairly often.
|
||||
RDCWARN("Capture may be missing reference to %s resource (%llu).", TypeName<type>(), id);
|
||||
RDCWARN("Capture may be missing reference to %s resource (%llu).", TypeName<type>().c_str(),
|
||||
id);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user