diff --git a/autogen/lua_definitions/constants.lua b/autogen/lua_definitions/constants.lua index fd257dde..3c6e3af9 100644 --- a/autogen/lua_definitions/constants.lua +++ b/autogen/lua_definitions/constants.lua @@ -12559,11 +12559,8 @@ MAX_VERSION_LENGTH = 32 --- @type integer MINOR_VERSION_NUMBER = 2 ---- @type integer -PATCH_VERSION_NUMBER = 0 - --- @type string -SM64COOPDX_VERSION = "v1.0.2" +SM64COOPDX_VERSION = "v1.0.3" --- @type integer VERSION_NUMBER = 37 diff --git a/docs/lua/constants.md b/docs/lua/constants.md index d6f2ffb1..6dce0480 100644 --- a/docs/lua/constants.md +++ b/docs/lua/constants.md @@ -4463,7 +4463,6 @@ ## [version.h](#version.h) - MAX_VERSION_LENGTH - MINOR_VERSION_NUMBER -- PATCH_VERSION_NUMBER - SM64COOPDX_VERSION - VERSION_NUMBER - VERSION_REGION diff --git a/src/pc/configfile.c b/src/pc/configfile.c index 8b4e95dd..845c723d 100644 --- a/src/pc/configfile.c +++ b/src/pc/configfile.c @@ -56,8 +56,6 @@ struct FunctionConfigOption { /* *Config options and default values */ - -static_assert(NUM_SAVE_FILES == 4); // update this if more save slots are added char configSaveNames[4][MAX_SAVE_NAME_STRING] = { "SM64", "SM64", diff --git a/src/pc/lua/smlua_constants_autogen.c b/src/pc/lua/smlua_constants_autogen.c index 84e29325..8852a580 100644 --- a/src/pc/lua/smlua_constants_autogen.c +++ b/src/pc/lua/smlua_constants_autogen.c @@ -4397,11 +4397,10 @@ char gSmluaConstants[] = "" "COOP_OBJ_FLAG_LUA = (1 << 1)\n" "COOP_OBJ_FLAG_NON_SYNC = (1 << 2)\n" "COOP_OBJ_FLAG_INITIALIZED = (1 << 3)\n" -"SM64COOPDX_VERSION = 'v1.0.2'\n" +"SM64COOPDX_VERSION = 'v1.0.3'\n" "VERSION_TEXT = 'v'\n" "VERSION_NUMBER = 37\n" "MINOR_VERSION_NUMBER = 2\n" -"PATCH_VERSION_NUMBER = 0\n" "VERSION_REGION = 'JP'\n" "VERSION_REGION = 'EU'\n" "VERSION_REGION = 'SH'\n" diff --git a/src/pc/network/version.h b/src/pc/network/version.h index 4b4eef3c..9c49f157 100644 --- a/src/pc/network/version.h +++ b/src/pc/network/version.h @@ -1,13 +1,12 @@ #ifndef VERSION_H #define VERSION_H -#define SM64COOPDX_VERSION "v1.0.2" +#define SM64COOPDX_VERSION "v1.0.3" // internal version #define VERSION_TEXT "v" #define VERSION_NUMBER 37 #define MINOR_VERSION_NUMBER 2 -#define PATCH_VERSION_NUMBER 0 #if defined(VERSION_JP) #define VERSION_REGION "JP"