|
@@ -38,13 +38,13 @@ void main_second_animator(u16 current_frame) {
|
38
|
38
|
}
|
39
|
39
|
|
40
|
40
|
void main_animator_init(void) {
|
41
|
|
- blockset_one_current_tile = 0;
|
42
|
|
- blockset_one_max_tile = 0x280;
|
|
41
|
+ blockset_one_current_frame = 0;
|
|
42
|
+ blockset_one_max_frame = 0x280;
|
43
|
43
|
blockset_one_animator = main_animator;
|
44
|
44
|
}
|
45
|
45
|
|
46
|
46
|
void main_second_animator_init(void) {
|
47
|
|
- blockset_two_current_tile = 0;
|
48
|
|
- blockset_two_max_tile = 0x100;
|
|
47
|
+ blockset_two_current_frame = 0;
|
|
48
|
+ blockset_two_max_frame = 0x100;
|
49
|
49
|
blockset_two_animator = main_second_animator;
|
50
|
50
|
}
|