Merge branch 'UNLEASHED' into 420

This commit is contained in:
RogueMaster
2022-10-12 00:13:02 -04:00
101 changed files with 3254 additions and 2195 deletions
@@ -75,8 +75,8 @@ int rand_range(int min, int max) {
void move_ball(Canvas* canvas, ArkanoidState* st) {
st->tick++;
int current_speed = abs(st->speed-1 - MAX_SPEED);
if (st->tick % current_speed != 0 && st->tick % (current_speed + 1) != 0) {
int current_speed = abs(st->speed - 1 - MAX_SPEED);
if(st->tick % current_speed != 0 && st->tick % (current_speed + 1) != 0) {
return;
}