From 13f4ac481e4f529a1cf3a7bf98470aa0e1102512 Mon Sep 17 00:00:00 2001 From: baldurk Date: Thu, 9 Nov 2017 15:11:20 +0000 Subject: [PATCH] Fix incorrect arguments to error printf --- renderdoc/serialise/rdcfile.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/renderdoc/serialise/rdcfile.cpp b/renderdoc/serialise/rdcfile.cpp index 7470e28f2..d3ff246f0 100644 --- a/renderdoc/serialise/rdcfile.cpp +++ b/renderdoc/serialise/rdcfile.cpp @@ -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;