Skip to content

Commit

Permalink
fix Memory init failed on Linux x32 ABI
Browse files Browse the repository at this point in the history
  • Loading branch information
hkbu-kennycheng committed Jul 3, 2023
1 parent 1253e60 commit 8b7b7d3
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion ppsspp_config.h
Expand Up @@ -19,7 +19,11 @@

#if defined(_M_X64) || defined(__amd64__) || defined(__x86_64__)
#define PPSSPP_ARCH_AMD64 1
#define PPSSPP_ARCH_64BIT 1
#if defined(__ILP32__)
#define PPSSPP_ARCH_32BIT 1
#else
#define PPSSPP_ARCH_64BIT 1
#endif
//TODO: Remove this compat define
#ifndef _M_X64
#define _M_X64 1
Expand Down

0 comments on commit 8b7b7d3

Please sign in to comment.