diff src/animation.c @ 46:b815621df3e3

core: remove all fixed width integers, closes #2460
author David Demelier <markand@malikania.fr>
date Wed, 15 Jan 2020 22:31:17 +0100
parents 66f318fd97a0
children
line wrap: on
line diff
--- a/src/animation.c	Wed Jan 15 22:31:17 2020 +0100
+++ b/src/animation.c	Wed Jan 15 22:31:17 2020 +0100
@@ -22,7 +22,7 @@
 #include "sprite.h"
 
 void
-animation_init(struct animation *an, struct sprite *sprite, uint16_t delay)
+animation_init(struct animation *an, struct sprite *sprite, unsigned int delay)
 {
 	assert(an);
 	assert(sprite);
@@ -55,7 +55,7 @@
 }
 
 void
-animation_update(struct animation *an, unsigned ticks)
+animation_update(struct animation *an, unsigned int ticks)
 {
 	assert(an);