mirror of
https://github.com/coop-deluxe/sm64coopdx.git
synced 2024-11-22 03:55:11 +00:00
v1.0.3
This commit is contained in:
parent
dad54c3dd3
commit
a4ed5ddb53
5 changed files with 3 additions and 11 deletions
|
@ -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
|
||||
|
|
|
@ -4463,7 +4463,6 @@
|
|||
## [version.h](#version.h)
|
||||
- MAX_VERSION_LENGTH
|
||||
- MINOR_VERSION_NUMBER
|
||||
- PATCH_VERSION_NUMBER
|
||||
- SM64COOPDX_VERSION
|
||||
- VERSION_NUMBER
|
||||
- VERSION_REGION
|
||||
|
|
|
@ -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",
|
||||
|
|
|
@ -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"
|
||||
|
|
|
@ -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"
|
||||
|
|
Loading…
Reference in a new issue