Commit 798ee75 1 parent 412b875 commit 798ee75 Copy full SHA for 798ee75
File tree 3 files changed +11
-3
lines changed
3 files changed +11
-3
lines changed Original file line number Diff line number Diff line change @@ -189,7 +189,13 @@ MENU_ALL_STAR_MODE = 0x05
189
189
190
190
MENU_DEBUG = 0x06
191
191
MENU_SOUND_TEST = 0x07
192
- MENU_VS_UNKNOWN = 0x08
192
+
193
+ MENU_VS_UNKNOWN = 0x08 -- SLIPPI UNRANKED
194
+ MENU_VS_UNKNOWN_CSS = 0x00
195
+ MENU_VS_UNKNOWN_SSS = 0x01
196
+ MENU_VS_UNKNOWN_INGAME = 0x02
197
+ MENU_VS_UNKNOWN_POSTGAME = 0x04
198
+
193
199
MENU_UNKOWN_1 = 0x09
194
200
MENU_CAMERA_MODE = 0x0A
195
201
MENU_TROPHY_GALLERY = 0x0B
Original file line number Diff line number Diff line change @@ -48,6 +48,8 @@ local player_static_addresses = {
48
48
0x80453F10 , -- Player 2
49
49
0x80454DA0 , -- Player 3
50
50
0x80455C30 , -- Player 4
51
+ 0x80456AC0 , -- Player 5
52
+ 0x80457950 , -- Player 6
51
53
}
52
54
53
55
local player_static_struct = {
Original file line number Diff line number Diff line change @@ -84,7 +84,7 @@ function music.isInGame()
84
84
-- return memory.menu_minor % 2 == 0
85
85
return true
86
86
end
87
- if memory .menu_major == MENU_VS_MODE then
87
+ if memory .menu_major == MENU_VS_MODE or memory . menu_major == MENU_VS_UNKNOWN then
88
88
return memory .menu_minor == MENU_VS_INGAME
89
89
end
90
90
if memory .menu_major >= MENU_TRAINING_MODE and memory .menu_major <= MENU_STAMINA_MODE or memory .menu_major == MENU_FIXED_CAMERA_MODE then
@@ -141,7 +141,7 @@ function music.isInMenus()
141
141
if memory .menu_major == MENU_MAIN_MENU then
142
142
return true
143
143
end
144
- if memory .menu_major == MENU_VS_MODE then
144
+ if memory .menu_major == MENU_VS_MODE or memory . menu_major == MENU_VS_UNKNOWN then
145
145
return memory .menu_minor == MENU_VS_CSS or memory .menu_minor == MENU_VS_SSS
146
146
end
147
147
if memory .menu_major >= MENU_TRAINING_MODE and memory .menu_major <= MENU_STAMINA_MODE or memory .menu_major == MENU_FIXED_CAMERA_MODE then
You can’t perform that action at this time.
0 commit comments