mirror of
https://github.com/baldurk/renderdoc.git
synced 2026-08-23 15:06:32 +00:00
Don't pass rdcstr through to logging directly
This commit is contained in:
@@ -792,7 +792,7 @@ void Program::FillRayPayloads(
|
||||
rayPayloads[entryPoint].second = MakePayloadType(typeInfo, ownAttrType);
|
||||
else
|
||||
RDCERR("Couldn't find matching attribute type for '%s' by name",
|
||||
executableAttrType->name);
|
||||
executableAttrType->name.c_str());
|
||||
break;
|
||||
}
|
||||
}
|
||||
@@ -839,7 +839,7 @@ void Program::FillRayPayloads(
|
||||
rayPayloads[entryPoint].first = MakePayloadType(typeInfo, ownPayloadType);
|
||||
else
|
||||
RDCERR("Couldn't find matching payload type for '%s' by name",
|
||||
executablePayloadType->name);
|
||||
executablePayloadType->name.c_str());
|
||||
|
||||
break;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user