Skip to content

Commit 42e9926

Browse files
committed
small fix for x86 on linux
1 parent 9a56e94 commit 42e9926

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/xrCore/LocatorAPI.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,9 @@
1818
#define _A_HIDDEN 0x02
1919
#define _A_SUBDIR 0x00000010
2020

21-
#ifdef XR_X64
21+
#if defined(XR_X64)
2222
#define _finddata_t _finddata64i32_t
23-
#elif XR_X86
23+
#elif defined(XR_X86)
2424
#define _finddata_t _finddata32_t
2525
#endif // XR_X64 or XR_X86
2626

0 commit comments

Comments
 (0)