mirror of
https://github.com/izzy2lost/Ghostship.git
synced 2026-06-19 01:17:03 -07:00
Refresh 13
This commit is contained in:
+9
-9
@@ -46,8 +46,8 @@ static const LevelScript script_exec_level_table[2
|
||||
|
||||
static const LevelScript script_L1[4];
|
||||
static const LevelScript script_L2[4];
|
||||
static const LevelScript script_L3[4];
|
||||
static const LevelScript script_L4[4];
|
||||
static const LevelScript goto_mario_head_regular[4];
|
||||
static const LevelScript goto_mario_head_dizzy[4];
|
||||
static const LevelScript script_L5[4];
|
||||
|
||||
#define STUB_LEVEL(_0, _1, _2, _3, _4, _5, _6, _7, _8)
|
||||
@@ -120,26 +120,26 @@ const LevelScript level_main_scripts_entry[] = {
|
||||
SLEEP(/*frames*/ 1),
|
||||
LOOP_UNTIL(/*op*/ OP_LT, /*arg*/ 0),
|
||||
JUMP_IF(/*op*/ OP_EQ, /*arg*/ -1, script_L2),
|
||||
JUMP_IF(/*op*/ OP_EQ, /*arg*/ -2, script_L3),
|
||||
JUMP_IF(/*op*/ OP_EQ, /*arg*/ -3, script_L4),
|
||||
JUMP_IF(/*op*/ OP_EQ, /*arg*/ -2, goto_mario_head_regular),
|
||||
JUMP_IF(/*op*/ OP_EQ, /*arg*/ -3, goto_mario_head_dizzy),
|
||||
JUMP_IF(/*op*/ OP_EQ, /*arg*/ -8, script_L1),
|
||||
JUMP_IF(/*op*/ OP_EQ, /*arg*/ -9, script_L5),
|
||||
};
|
||||
|
||||
static const LevelScript script_L1[] = {
|
||||
EXIT_AND_EXECUTE(/*seg*/ 0x14, _introSegmentRomStart, _introSegmentRomEnd, level_intro_entry_1),
|
||||
EXIT_AND_EXECUTE(/*seg*/ 0x14, _introSegmentRomStart, _introSegmentRomEnd, level_intro_splash_screen),
|
||||
};
|
||||
|
||||
static const LevelScript script_L2[] = {
|
||||
EXIT_AND_EXECUTE(/*seg*/ 0x0E, _endingSegmentRomStart, _endingSegmentRomEnd, level_ending_entry),
|
||||
};
|
||||
|
||||
static const LevelScript script_L3[] = {
|
||||
EXIT_AND_EXECUTE(/*seg*/ 0x14, _introSegmentRomStart, _introSegmentRomEnd, level_intro_entry_2),
|
||||
static const LevelScript goto_mario_head_regular[] = {
|
||||
EXIT_AND_EXECUTE(/*seg*/ 0x14, _introSegmentRomStart, _introSegmentRomEnd, level_intro_mario_head_regular),
|
||||
};
|
||||
|
||||
static const LevelScript script_L4[] = {
|
||||
EXIT_AND_EXECUTE(/*seg*/ 0x14, _introSegmentRomStart, _introSegmentRomEnd, level_intro_entry_3),
|
||||
static const LevelScript goto_mario_head_dizzy[] = {
|
||||
EXIT_AND_EXECUTE(/*seg*/ 0x14, _introSegmentRomStart, _introSegmentRomEnd, level_intro_mario_head_dizzy),
|
||||
};
|
||||
|
||||
static const LevelScript script_L5[] = {
|
||||
|
||||
Reference in New Issue
Block a user