diff --git a/Makefile b/Makefile index 3d8738d7..f4a40965 100644 --- a/Makefile +++ b/Makefile @@ -304,6 +304,15 @@ ifeq ($(NOEXTRACT),0) endif endif +# Luigi and wario sounds don't work on 32-bit right now +# And the audio code is so terrible I don't care enough to figure it out at the moment +ifeq ($(TARGET_BITS), 32) + $(shell rm -rf sound/samples/sfx_custom_luigi/*.aiff) + $(shell rm -rf sound/samples/sfx_custom_luigi_peach/*.aiff) + $(shell rm -rf sound/samples/sfx_custom_wario/*.aiff) + $(shell rm -rf sound/samples/sfx_custom_wario_peach/*.aiff) +endif + # Copy missing luigi sounds from mario sound banks $(shell mkdir -p sound/samples/sfx_custom_luigi sound/samples/sfx_custom_luigi_peach ) $(shell cp -n sound/samples/sfx_mario/*.aiff sound/samples/sfx_custom_luigi/ )