Skip to content

Commit

Permalink
small fix for x86 on linux
Browse files Browse the repository at this point in the history
  • Loading branch information
q4a committed Sep 22, 2018
1 parent 9a56e94 commit 42e9926
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/xrCore/LocatorAPI.h
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,9 @@
#define _A_HIDDEN 0x02
#define _A_SUBDIR 0x00000010

#ifdef XR_X64
#if defined(XR_X64)
#define _finddata_t _finddata64i32_t
#elif XR_X86
#elif defined(XR_X86)
#define _finddata_t _finddata32_t
#endif // XR_X64 or XR_X86

Expand Down

0 comments on commit 42e9926

Please sign in to comment.