Skip to content

Commit

Permalink
Hopefully fixes multiline-comment warning.
Browse files Browse the repository at this point in the history
  • Loading branch information
razterizer committed Sep 30, 2024
1 parent 35d1b20 commit 462fe35
Showing 1 changed file with 11 additions and 11 deletions.
22 changes: 11 additions & 11 deletions Pilot_Episode/Powerups.h
Original file line number Diff line number Diff line change
Expand Up @@ -37,17 +37,17 @@ void draw_update_powerup(SpriteHandler<NR, NC>& sh, std::array<PowerUpData, N>&
if (pud.y_vel > crit_vel)
pud.y_vel = crit_vel;

// /^^^^^^^\
// ( )
// \v^v^v^v/
// \ \ / /
// \ Y /
// \|/
// +---+---+
// | | |
// +---+---+
// |ACM|E |
// +---+---+
// /^^^^^^^\ |
// ( ) |
// \v^v^v^v/ |
// \ \ / / |
// \ Y / |
// \|/ |
// +---+---+ |
// | | | |
// +---+---+ |
// |ACM|E | |
// +---+---+ |
float x_diff = pud.x_pos - x_pos;
float y_diff = pud.y_pos - y_pos;
int r = r_mid + math::roundI(y_diff);
Expand Down

0 comments on commit 462fe35

Please sign in to comment.