Browse Source

Merge pull request #11538 from cathyjf/renderdoc-check-correct-win32-symbol

renderdoc: Check for `_WIN32` symbol rather than `WIN32`
liamwhite 2 năm trước cách đây
mục cha
commit
55087ab08a
1 tập tin đã thay đổi với 1 bổ sung1 xóa
  1. 1 1
      src/core/tools/renderdoc.cpp

+ 1 - 1
src/core/tools/renderdoc.cpp

@@ -7,7 +7,7 @@
 #include "common/dynamic_library.h"
 #include "core/tools/renderdoc.h"
 
-#ifdef WIN32
+#ifdef _WIN32
 #include <windows.h>
 #else
 #include <dlfcn.h>