Compile fix - missing rename was mixed in with other changes

This commit is contained in:
baldurk
2017-03-13 19:06:22 +00:00
parent 487a1b7903
commit 747d0550f9
+2 -2
View File
@@ -500,7 +500,7 @@ struct ReplayCommand : public Command
float progress = 0.0f;
rdctype::str remotePath = remote->CopyCaptureToRemote(filename.c_str(), &progress);
ReplayRenderer *renderer = NULL;
IReplayRenderer *renderer = NULL;
status = remote->OpenCapture(~0U, remotePath.elems, &progress, &renderer);
if(status == eReplayCreate_Success)
@@ -522,7 +522,7 @@ struct ReplayCommand : public Command
std::cout << "Replaying '" << filename << "' locally.." << std::endl;
float progress = 0.0f;
ReplayRenderer *renderer = NULL;
IReplayRenderer *renderer = NULL;
ReplayCreateStatus status =
RENDERDOC_CreateReplayRenderer(filename.c_str(), &progress, &renderer);