2020-06-23 08:04:12 +00:00
|
|
|
// Displays a pellet delay cloud [cel] in the given [col] at
|
|
|
|
// (⌊left/8⌋*8, top).
|
2020-08-20 19:59:45 +00:00
|
|
|
void pellet_cloud_put_8(screen_x_t left, vram_y_t top, int col, int cel);
|
2020-06-23 08:04:12 +00:00
|
|
|
|
|
|
|
// Restores the pixels of the given pellet delay cloud [cel], starting at
|
|
|
|
// (⌊left/8⌋*8, top), from VRAM page 1, effectively removing a cloud that was
|
|
|
|
// previously blitted to that position.
|
2020-08-20 19:59:45 +00:00
|
|
|
void pellet_cloud_unput_8(screen_x_t left, vram_y_t top, int cel);
|