From ccf11a1cd13b8c794afa14530be3c17d91315eba Mon Sep 17 00:00:00 2001 From: a Date: Mon, 14 Jul 2025 22:54:06 -0400 Subject: [PATCH] remove final release option --- Makefile | 3 --- 1 file changed, 3 deletions(-) diff --git a/Makefile b/Makefile index 727cee46..fac4a10a 100644 --- a/Makefile +++ b/Makefile @@ -14,7 +14,6 @@ LIBDRAGON_IPL3 ?= 0 # Build types # debug - Debug build # general - General release build -# final - Final release build with no crash screen, game will reset upon exception. RELEASE ?= debug @@ -55,8 +54,6 @@ ifeq ($(RELEASE), debug) DEFINES += _DEBUG=1 else ifeq ($(RELEASE), general) OPT_FLAGS := -Os -ggdb3 -else ifeq ($(RELEASE), final) - OPT_FLAGS := -Os else $(error Invalid build release setting.) endif