From b30fe86658947d4dbba248b06d15bcc497922b87 Mon Sep 17 00:00:00 2001 From: baldurk Date: Thu, 8 May 2014 22:20:48 +0100 Subject: [PATCH] check for vshost exe as well as other exes to detect replay app --- renderdoc/hooks/win32_libentry.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/renderdoc/hooks/win32_libentry.cpp b/renderdoc/hooks/win32_libentry.cpp index b5b91d8c1..25c67dbd0 100644 --- a/renderdoc/hooks/win32_libentry.cpp +++ b/renderdoc/hooks/win32_libentry.cpp @@ -56,6 +56,7 @@ BOOL add_hooks() } if(f.find(L"renderdoccmd.exe") != wstring::npos || + f.find(L"renderdocui.vshost.exe") != wstring::npos || f.find(L"renderdocui.exe") != wstring::npos) { RDCDEBUG("Not creating hooks - in replay app");