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

renderdoc: Check for `_WIN32` symbol rather than `WIN32`
This commit is contained in:
liamwhite 2023-09-19 09:24:23 -04:00 committed by GitHub
commit 55087ab08a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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>