From afdd28dbe2aa291bb458988a1488b5df21466ea6 Mon Sep 17 00:00:00 2001 From: EliteMasterEric Date: Wed, 1 May 2024 12:56:13 -0400 Subject: [PATCH] Automatically mark -release builds as not prototype. --- source/funkin/util/Constants.hx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/funkin/util/Constants.hx b/source/funkin/util/Constants.hx index 8446f0331..f79c99db9 100644 --- a/source/funkin/util/Constants.hx +++ b/source/funkin/util/Constants.hx @@ -41,7 +41,7 @@ class Constants * A suffix to add to the game version. * Add a suffix to prototype builds and remove it for releases. */ - public static final VERSION_SUFFIX:String = ' PROTOTYPE'; + public static final VERSION_SUFFIX:String = #if (DEBUG || FORCE_DEBUG_VERSION) ' PROTOTYPE' #else '' #end; #if (debug || FORCE_DEBUG_VERSION) static function get_VERSION():String