Browse Source
Merge pull request #11538 from cathyjf/renderdoc-check-correct-win32-symbol
renderdoc: Check for `_WIN32` symbol rather than `WIN32`
pull/15/merge
liamwhite
2 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
1 additions and
1 deletions
-
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>
|
|
|
|
|