Fixed the build system
This commit is contained in:
parent
c22e97dbdf
commit
35f48fd7c0
2 changed files with 2 additions and 4 deletions
2
main.c
2
main.c
|
@ -118,7 +118,6 @@ void Particle_Move(Particle* self)
|
|||
if (frame_rate == 0) {
|
||||
frame_rate = 60;
|
||||
}
|
||||
printf("%lu\n", SDL_FPSCounterFPS(&fps_counter));
|
||||
|
||||
Particle copy = *self;
|
||||
|
||||
|
@ -143,7 +142,6 @@ void Particle_Move(Particle* self)
|
|||
}
|
||||
|
||||
/*
|
||||
|
||||
self->position.x = self->position.x > 600 ? self->position.x - 600 : self->position.x;
|
||||
self->position.x = self->position.x < 0 ? self->position.x + 600 : self->position.x;
|
||||
self->position.y = self->position.y > 600 ? self->position.y - 600 : self->position.y;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue