Skip to content

Commit

Permalink
Widen detection of ANDROID_SIM
Browse files Browse the repository at this point in the history
  • Loading branch information
hughsando committed Jun 2, 2024
1 parent 4833375 commit 762b6f2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion project/src/opengl/OGLTexture.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

#define SWAP_RB 0

#if (defined(ANDROID_X86) || ( defined(ANDROID) && defined(HXCPP_M64) && !defined(HXCPP_ARM64)))
#if ( defined(HX_ANDROID) && !( defined(HXCPP_ARM64) || defined(HXCPP_ARMV7) || defined(__arm__) || defined(__aarch64__) ) )
#define ANDROID_SIM
#endif

Expand Down

0 comments on commit 762b6f2

Please sign in to comment.