1
0
Fork 0
mirror of https://github.com/notwa/mm synced 2024-06-25 19:47:12 -07:00

add more addresses across versions

This commit is contained in:
Connor Olding 2015-11-14 19:16:13 -08:00
parent a1babce6bb
commit 1ccc4891be
4 changed files with 10 additions and 2 deletions

View File

@ -1,3 +1,7 @@
return {
entrance_table = A(0x20D480, 0),
owl_table = A(0x2107A8, 0),
stored_song = A(0x2107CD, 0),
mask_mask_bit = A(0x24405A, 3),
scene_time_speed = A(0x3E4082, 2),
}

View File

@ -50,4 +50,8 @@ return {
screen_scale_enable = AL(0x42EC, 1),
screen_scale = AL(0x42F0, 'f'),
scene_flags_ingame = AL(0x42F4, 0x960),
stored_epona = A(0x1B892F, 1),
stored_song = A(0x1C18ED, 1),
scene_time_speed = A(0x382672, 2),
}

View File

@ -13,4 +13,5 @@ return {
buttons_3 = A(0x1FB870, 2),
buttons_4 = A(0x1FB876, 2),
music_speed = A(0x2050D8, 1),
scene_time_speed = A(0x382502, 2),
}

View File

@ -240,8 +240,7 @@ local time_menu = Menu{
Oneshot("Time flow: Slow (iSoT)", Setter{[addrs.time_speed]=-2}),
Oneshot("Time flow: Stopped", Setter{[addrs.time_speed]=-3}),
Oneshot("Time flow: Backwards", Setter{[addrs.time_speed]=-5}),
-- TODO: make version-agnostic
Oneshot("Disable time flow (Scene)", Setter{[A(0x382502, 2)]=0}),
Oneshot("Disable time flow (Scene)", Setter{[addrs.scene_time_speed]=0}),
--Oneshot("Stop time glitch", stop_time),
Text(""),
Back(),