Skip to content

Commit e373c5f

Browse files
committed
Remove debug output
1 parent 428360e commit e373c5f

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

src/sprite.c

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -207,8 +207,6 @@ sprite_update(Sprite *s, UpdateData *data)
207207
void
208208
sprite_interpolate_to(Sprite *s, Destination *dest)
209209
{
210-
debug("Interpolating:");
211-
debug(" Pos: %dx%d -> %dx%d", s->pos.x, s->pos.y, dest->pos.x, dest->pos.y);
212210
s->offset = POS((dest->dim.width - s->dim.width) / 2, (dest->dim.height - s->dim.width) / 2);
213211
s->rotationPoint = (SDL_Point){dest->dim.width / 2, dest->dim.height / 2};
214212
s->state = SPRITE_STATE_MOVING;

0 commit comments

Comments
 (0)