We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a6af4c4 commit c701996Copy full SHA for c701996
1 file changed
th03/main/enemy/fireball.cpp
@@ -278,12 +278,10 @@ void near fireball_explosion_put(void)
278
}
279
sprite16_put_size.set(64, 64);
280
281
- // ZUN bug: (16 / 2) pixels lower than where they should be, and where
282
- // collision detection constructs its hitbox.
283
screen_x_t left;
284
screen_y_t top;
285
left = (playfield_fg_x_to_screen(p->center.x, p->pid) - (64 / 2));
286
- top = (playfield_fg_y_to_screen(p->center.y, p->pid) - (48 / 2));
+ top = (playfield_fg_y_to_screen(p->center.y, p->pid) - (64 / 2));
287
288
sprite16_put(left, top, so);
289
0 commit comments