Revert "xrick: fix sim build warning on arm with -Wundef"

This reverts commit f05be27ae6.

Reason for revert: Introduces warnings on all (x86) sim builds.  

Change-Id: I052c3569693663910a4290668b90ff444da65c75
This commit is contained in:
Solomon Peachy 2025-12-07 14:17:46 -05:00
parent ecb3e9936f
commit a5df7c2e02

View file

@ -25,11 +25,11 @@
#define MINIZ_NO_MALLOC
#ifdef ROCKBOX
# define MINIZ_NO_ASSERT
# define MINIZ_X86_OR_X64_CPU 0
# define MINIZ_USE_UNALIGNED_LOADS_AND_STORES 0
# ifndef SIMULATOR
# define MINIZ_X86_OR_X64_CPU 0
# define MINIZ_HAS_64BIT_REGISTERS 0
# define TINFL_USE_64BIT_BITBUF 0
# define MINIZ_USE_UNALIGNED_LOADS_AND_STORES 0
# endif /* ndef SIMULATOR */
#endif