Skip to content

Commit

Permalink
Reverse wasm architecture check, to match the rest
Browse files Browse the repository at this point in the history
  • Loading branch information
ethanaobrien committed Jan 10, 2025
1 parent 8dfe1f9 commit 45453e8
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/openrct2/Version.h
Original file line number Diff line number Diff line change
Expand Up @@ -37,10 +37,10 @@
#elif defined(__loongarch__)
#define OPENRCT2_ARCHITECTURE "LoongArch"
#endif
#ifdef __wasm32__
#define OPENRCT2_ARCHITECTURE "wasm32"
#elif defined(__wasm64__)
#ifdef __wasm64__
#define OPENRCT2_ARCHITECTURE "wasm64"
#elif defined(__wasm32__)
#define OPENRCT2_ARCHITECTURE "wasm32"
#endif

#ifndef OPENRCT2_ARCHITECTURE
Expand Down

0 comments on commit 45453e8

Please sign in to comment.