mirror of
https://github.com/coop-deluxe/sm64coopdx.git
synced 2026-05-11 03:11:49 +00:00
v1.5
This commit is contained in:
parent
58a6b7e019
commit
675c71e00d
4 changed files with 15 additions and 15 deletions
|
|
@ -11292,16 +11292,16 @@ COOP_OBJ_FLAG_NON_SYNC = (1 << 2)
|
|||
COOP_OBJ_FLAG_INITIALIZED = (1 << 3)
|
||||
|
||||
--- @type string
|
||||
SM64COOPDX_VERSION = "v1.4.2"
|
||||
SM64COOPDX_VERSION = "v1.5"
|
||||
|
||||
--- @type string
|
||||
VERSION_TEXT = "v"
|
||||
|
||||
--- @type integer
|
||||
VERSION_NUMBER = 41
|
||||
VERSION_NUMBER = 42
|
||||
|
||||
--- @type integer
|
||||
MINOR_VERSION_NUMBER = 1
|
||||
MINOR_VERSION_NUMBER = 0
|
||||
|
||||
--- @type string
|
||||
GAME_NAME = "sm64coopdx"
|
||||
|
|
|
|||
|
|
@ -135,12 +135,12 @@ C_RIGHT = "C-Right"
|
|||
|
||||
ANALOG_STICK_OPTIONS = "Analog Stick Options"
|
||||
|
||||
ROTATE_LEFT = "Rotate Left Stick 90 degrees"
|
||||
INVERT_LEFT_X = "Invert Left Stick X axis"
|
||||
INVERT_LEFT_Y = "Invert Left Stick Y axis"
|
||||
ROTATE_RIGHT = "Rotate Right Stick 90 degrees"
|
||||
INVERT_RIGHT_X = "Invert Right Stick X axis"
|
||||
INVERT_RIGHT_Y = "Invert Right Stick Y axis"
|
||||
ROTATE_LEFT = "Rotate Left Stick 90 Degrees"
|
||||
INVERT_LEFT_X = "Invert Left Stick X Axis"
|
||||
INVERT_LEFT_Y = "Invert Left Stick Y Axis"
|
||||
ROTATE_RIGHT = "Rotate Right Stick 90 Degrees"
|
||||
INVERT_RIGHT_X = "Invert Right Stick X Axis"
|
||||
INVERT_RIGHT_Y = "Invert Right Stick Y Axis"
|
||||
|
||||
[DISPLAY]
|
||||
DISPLAY = "DISPLAY"
|
||||
|
|
|
|||
|
|
@ -4696,10 +4696,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.4.2'\n"
|
||||
"SM64COOPDX_VERSION='v1.5'\n"
|
||||
"VERSION_TEXT='v'\n"
|
||||
"VERSION_NUMBER=41\n"
|
||||
"MINOR_VERSION_NUMBER=1\n"
|
||||
"VERSION_NUMBER=42\n"
|
||||
"MINOR_VERSION_NUMBER=0\n"
|
||||
"GAME_NAME='sm64coopdx'\n"
|
||||
"WINDOW_NAME='Super Mario 64 Coop Deluxe'\n"
|
||||
"MAX_VERSION_LENGTH=128\n"
|
||||
|
|
|
|||
|
|
@ -1,12 +1,12 @@
|
|||
#ifndef VERSION_H
|
||||
#define VERSION_H
|
||||
|
||||
#define SM64COOPDX_VERSION "v1.4.2"
|
||||
#define SM64COOPDX_VERSION "v1.5"
|
||||
|
||||
// internal version
|
||||
#define VERSION_TEXT "v"
|
||||
#define VERSION_NUMBER 41
|
||||
#define MINOR_VERSION_NUMBER 1
|
||||
#define VERSION_NUMBER 42
|
||||
#define MINOR_VERSION_NUMBER 0
|
||||
|
||||
#if defined(VERSION_JP)
|
||||
#define VERSION_REGION "JP"
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue