From 762c83d09cc950017571c920c310eefeaeee5490 Mon Sep 17 00:00:00 2001 From: Ignacio Sanchez Gines <863613+drhelius@users.noreply.github.com> Date: Sun, 15 Dec 2024 19:07:06 +0100 Subject: [PATCH] [libretro] disable disassembler (regrression) --- platforms/libretro/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/platforms/libretro/Makefile b/platforms/libretro/Makefile index 1987639..1e31bec 100644 --- a/platforms/libretro/Makefile +++ b/platforms/libretro/Makefile @@ -337,8 +337,8 @@ OBJECTS := $(SOURCES_C:.c=.o) $(SOURCES_CXX:.cpp=.o) INCLUDES += -I$(SOURCE_DIR) -CFLAGS += -DGG_DISABLE_DISASSEMBLER -Wall -D__LIBRETRO__ $(fpic) -CXXFLAGS += -DGG_DISABLE_DISASSEMBLER -Wall -D__LIBRETRO__ $(fpic) +CFLAGS += -DGEARCOLECO_DISABLE_DISASSEMBLER -Wall -D__LIBRETRO__ $(fpic) +CXXFLAGS += -DGEARCOLECO_DISABLE_DISASSEMBLER -Wall -D__LIBRETRO__ $(fpic) all: $(TARGET) @echo Build complete: $(TARGET_NAME) $(DEBUG) - $(GIT_VERSION) - $(platform)