diff options
author | jacopo grandi <jak.sk8@hotmail.it> | 2021-02-24 16:38:42 +0100 |
---|---|---|
committer | jacopo grandi <jak.sk8@hotmail.it> | 2021-02-24 16:38:42 +0100 |
commit | 0b338bbd007048551526ab4fa4130d53b414e650 (patch) | |
tree | 1eabc6fcd6954de07cf1304435b1f70fd58e29f2 /render/render_text.c | |
parent | f26a86bcc78c1946f55b6a399039e3bd8fb5dd16 (diff) |
fire and movement animations
Diffstat (limited to 'render/render_text.c')
-rw-r--r-- | render/render_text.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/render/render_text.c b/render/render_text.c index 6b801eb..c701fd7 100644 --- a/render/render_text.c +++ b/render/render_text.c @@ -50,15 +50,14 @@ void render_text_scaled (SDL_Renderer* rend, char str[], } } -void render_text_small (SDL_Renderer* rend, char str[], float off[], - SDL_Texture *texsmall) +void render_text_small (SDL_Renderer* rend, char str[], float off[], txtd *t) { int width = 0; for (int i=0; str[i]!='\0'; i++) { int char_i = str[i]; SDL_Rect srcRect = { (char_i%32)*5+1, (char_i/32)*7+1, 4, 6 }; SDL_Rect dstRect = { off[0]+width, off[1], 4, 6 }; - SDL_RenderCopy(rend, texsmall, &srcRect, &dstRect); + SDL_RenderCopy(rend, t->tex_small, &srcRect, &dstRect); width += 5; } }
\ No newline at end of file |