mirror of
https://github.com/baldurk/renderdoc.git
synced 2026-05-06 10:00:40 +00:00
Fix incorrect arguments to error printf
This commit is contained in:
@@ -329,7 +329,7 @@ void RDCFile::Init(StreamReader &reader)
|
||||
RDCERR(
|
||||
"Capture file from wrong version. This program (v%s) is logfile version %llu, file is "
|
||||
"logfile version %llu capture on %s.",
|
||||
SERIALISE_VERSION, header.version, MAJOR_MINOR_VERSION_STRING, header.progVersion);
|
||||
MAJOR_MINOR_VERSION_STRING, SERIALISE_VERSION, header.version, header.progVersion);
|
||||
|
||||
m_Error = ContainerError::UnsupportedVersion;
|
||||
return;
|
||||
|
||||
Reference in New Issue
Block a user