This commit is contained in:
Agent X 2024-09-01 19:00:38 -04:00
parent dad54c3dd3
commit a4ed5ddb53
5 changed files with 3 additions and 11 deletions

View File

@ -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

View File

@ -4463,7 +4463,6 @@
## [version.h](#version.h)
- MAX_VERSION_LENGTH
- MINOR_VERSION_NUMBER
- PATCH_VERSION_NUMBER
- SM64COOPDX_VERSION
- VERSION_NUMBER
- VERSION_REGION

View File

@ -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",

View File

@ -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"

View File

@ -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"