shithub: cstory

Download patch

ref: 20ed61a1f481d8abb4b8cd817c47507debfac349
parent: b8c70473dce4099c2b50be54784a9a95ffaa7cc7
author: Clownacy <Clownacy@users.noreply.github.com>
date: Thu Dec 5 10:04:53 EST 2019

Define NDEBUG in RELEASE builds

--- a/Makefile
+++ b/Makefile
@@ -8,7 +8,7 @@
 ALL_LIBS = $(LIBS)
 
 ifeq ($(RELEASE), 1)
-	ALL_CXXFLAGS += -O3
+	ALL_CXXFLAGS += -O3 -DNDEBUG
 	ALL_LDFLAGS += -s
 	FILENAME_DEF = CSE2.exe
 else