diff options
| author | Syndamia <kamen@syndamia.com> | 2026-03-16 20:59:04 +0200 |
|---|---|---|
| committer | Syndamia <kamen@syndamia.com> | 2026-03-16 20:59:04 +0200 |
| commit | e6842e44159d7cc9b1c32dd2baae4df164fa81d2 (patch) | |
| tree | a8678020b6185311ca1c0c40b7e952c43af5d95d /Animation.c | |
| parent | 7731ed11aee7ad4f9c634ba38992fb282b777d5a (diff) | |
| download | ppm_graphics-e6842e44159d7cc9b1c32dd2baae4df164fa81d2.tar ppm_graphics-e6842e44159d7cc9b1c32dd2baae4df164fa81d2.tar.gz ppm_graphics-e6842e44159d7cc9b1c32dd2baae4df164fa81d2.zip | |
feat: Implement tree rotation animation
Diffstat (limited to 'Animation.c')
| -rw-r--r-- | Animation.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/Animation.c b/Animation.c index 3ce79dc..a67c22e 100644 --- a/Animation.c +++ b/Animation.c @@ -76,7 +76,6 @@ Animation_pushEvent(Animation* anim, u32 startFrame, u32 endFrame, PixelRenderer void Animation_render(Animation* anim) { for (int currFrame = 0; currFrame < anim->frameCount; ++currFrame) { - if (anim->events != NULL) for (i32 r = 0; r < anim->frameBuffer.width; ++r) for (i32 c = 0; c < anim->frameBuffer.height; ++c) { |
