diff options
author | BoredGuy <osome3717@gmail.com> | 2025-01-03 11:38:13 +0300 |
---|---|---|
committer | BoredGuy <osome3717@gmail.com> | 2025-01-03 11:38:13 +0300 |
commit | 5f7e0d8cf88d0adb9739e2cc7e26ba26243975f8 (patch) | |
tree | 099937e59239471f0f611602b5b7788dfde91814 /Week1-Pacman/src/animation.c | |
parent | 1d1554652888fa4f0cd12a51fda8d9bd54dbcee6 (diff) |
Minor optimization
Animations can now share a single texture
Diffstat (limited to 'Week1-Pacman/src/animation.c')
-rw-r--r-- | Week1-Pacman/src/animation.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/Week1-Pacman/src/animation.c b/Week1-Pacman/src/animation.c index 7e4bb57..50f5c6c 100644 --- a/Week1-Pacman/src/animation.c +++ b/Week1-Pacman/src/animation.c @@ -17,7 +17,11 @@ void init_animation(struct animation* animation, exit(1); } - animation->texture = IMG_LoadTexture(init->ren, init->spritesheet); + if(init->spritesheet_texture == NULL) { + animation->texture = IMG_LoadTexture(init->ren, init->spritesheet); + } else { + animation->texture = init->spritesheet_texture; + } if(animation->texture == NULL) { printf("Failed to load spritesheet %s, error: %s, exitting!\n", |