v1.0.3
This commit is contained in:
parent
dad54c3dd3
commit
a4ed5ddb53
|
@ -12559,11 +12559,8 @@ MAX_VERSION_LENGTH = 32
|
||||||
--- @type integer
|
--- @type integer
|
||||||
MINOR_VERSION_NUMBER = 2
|
MINOR_VERSION_NUMBER = 2
|
||||||
|
|
||||||
--- @type integer
|
|
||||||
PATCH_VERSION_NUMBER = 0
|
|
||||||
|
|
||||||
--- @type string
|
--- @type string
|
||||||
SM64COOPDX_VERSION = "v1.0.2"
|
SM64COOPDX_VERSION = "v1.0.3"
|
||||||
|
|
||||||
--- @type integer
|
--- @type integer
|
||||||
VERSION_NUMBER = 37
|
VERSION_NUMBER = 37
|
||||||
|
|
|
@ -4463,7 +4463,6 @@
|
||||||
## [version.h](#version.h)
|
## [version.h](#version.h)
|
||||||
- MAX_VERSION_LENGTH
|
- MAX_VERSION_LENGTH
|
||||||
- MINOR_VERSION_NUMBER
|
- MINOR_VERSION_NUMBER
|
||||||
- PATCH_VERSION_NUMBER
|
|
||||||
- SM64COOPDX_VERSION
|
- SM64COOPDX_VERSION
|
||||||
- VERSION_NUMBER
|
- VERSION_NUMBER
|
||||||
- VERSION_REGION
|
- VERSION_REGION
|
||||||
|
|
|
@ -56,8 +56,6 @@ struct FunctionConfigOption {
|
||||||
/*
|
/*
|
||||||
*Config options and default values
|
*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] = {
|
char configSaveNames[4][MAX_SAVE_NAME_STRING] = {
|
||||||
"SM64",
|
"SM64",
|
||||||
"SM64",
|
"SM64",
|
||||||
|
|
|
@ -4397,11 +4397,10 @@ char gSmluaConstants[] = ""
|
||||||
"COOP_OBJ_FLAG_LUA = (1 << 1)\n"
|
"COOP_OBJ_FLAG_LUA = (1 << 1)\n"
|
||||||
"COOP_OBJ_FLAG_NON_SYNC = (1 << 2)\n"
|
"COOP_OBJ_FLAG_NON_SYNC = (1 << 2)\n"
|
||||||
"COOP_OBJ_FLAG_INITIALIZED = (1 << 3)\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_TEXT = 'v'\n"
|
||||||
"VERSION_NUMBER = 37\n"
|
"VERSION_NUMBER = 37\n"
|
||||||
"MINOR_VERSION_NUMBER = 2\n"
|
"MINOR_VERSION_NUMBER = 2\n"
|
||||||
"PATCH_VERSION_NUMBER = 0\n"
|
|
||||||
"VERSION_REGION = 'JP'\n"
|
"VERSION_REGION = 'JP'\n"
|
||||||
"VERSION_REGION = 'EU'\n"
|
"VERSION_REGION = 'EU'\n"
|
||||||
"VERSION_REGION = 'SH'\n"
|
"VERSION_REGION = 'SH'\n"
|
||||||
|
|
|
@ -1,13 +1,12 @@
|
||||||
#ifndef VERSION_H
|
#ifndef VERSION_H
|
||||||
#define VERSION_H
|
#define VERSION_H
|
||||||
|
|
||||||
#define SM64COOPDX_VERSION "v1.0.2"
|
#define SM64COOPDX_VERSION "v1.0.3"
|
||||||
|
|
||||||
// internal version
|
// internal version
|
||||||
#define VERSION_TEXT "v"
|
#define VERSION_TEXT "v"
|
||||||
#define VERSION_NUMBER 37
|
#define VERSION_NUMBER 37
|
||||||
#define MINOR_VERSION_NUMBER 2
|
#define MINOR_VERSION_NUMBER 2
|
||||||
#define PATCH_VERSION_NUMBER 0
|
|
||||||
|
|
||||||
#if defined(VERSION_JP)
|
#if defined(VERSION_JP)
|
||||||
#define VERSION_REGION "JP"
|
#define VERSION_REGION "JP"
|
||||||
|
|
Loading…
Reference in New Issue