Added stringifying escape & F keys; add sound, sys FFI; unconflict time.h and timer.h

This commit is contained in:
2022-12-16 17:54:05 +00:00
parent bfddf39a38
commit 6227754925
11 changed files with 149 additions and 66 deletions

View File

@@ -215,7 +215,7 @@ void anim_play(struct TexAnimation *anim)
if (anim->timer == NULL)
anim->timer = timer_make(1.f / anim->tex->anim.ms, tex_incr_anim, anim);
else
timer_settime(anim->timer, 1.f/anim->tex->anim.ms);
timerr_settime(anim->timer, 1.f/anim->tex->anim.ms);
timer_start(anim->timer);
}