diff --git a/texture.c b/texture.c index 6068bf2..1d2701a 100644 --- a/texture.c +++ b/texture.c @@ -63,14 +63,13 @@ int text_texture_render(text_texture* text_texture, int x, int y) return 1; } -int text_texture_destroy(text_texture* text_texture) +void text_texture_destroy(text_texture* text_texture) { if (!text_texture->texture) { - return 0; + return; } SDL_DestroyTexture(text_texture->texture); TTF_CloseFont(text_texture->font); - return 1; } int text_texture_frame_init(text_texture_frame* text_texture_frame, int len, SDL_Renderer* renderer, int font_size) @@ -78,6 +77,7 @@ int text_texture_frame_init(text_texture_frame* text_texture_frame, int len, SDL text_texture_frame->textures = malloc(len*sizeof(text_texture)); for (int i = 0; i < len; i++) { text_texture_init(&text_texture_frame->textures[i], renderer, font_size); + text_texture_load(&text_texture_frame->textures[i], ""); } text_texture_frame->len = len; return 1; @@ -94,12 +94,11 @@ int text_texture_frame_render(text_texture_frame* text_texture_frame, int x, int return 1; } -int text_texture_frame_destroy(text_texture_frame* text_texture_frame) +void text_texture_frame_destroy(text_texture_frame* text_texture_frame) { for (int i = 0; i < text_texture_frame->len; i++) { text_texture_destroy(&text_texture_frame->textures[i]); } free(text_texture_frame->textures); text_texture_frame->textures = NULL; - return 1; } diff --git a/texture.h b/texture.h index 96c39df..c985ece 100644 --- a/texture.h +++ b/texture.h @@ -18,12 +18,12 @@ typedef struct { } text_texture_frame; int text_texture_init(text_texture* text_texture, SDL_Renderer* renderer, int font_size); +void text_texture_destroy(text_texture* text_texture); int text_texture_load(text_texture* text_texture, char* string); int text_texture_render(text_texture* text_texture, int x, int y); -int text_texture_destroy(text_texture* text_texture); int text_texture_frame_init(text_texture_frame* text_texture_frame, int len, SDL_Renderer* renderer, int font_size); +void text_texture_frame_destroy(text_texture_frame* text_texture_frame); int text_texture_frame_render(text_texture_frame* text_texture_frame, int x, int y); -int text_texture_frame_destroy(text_texture_frame* text_texture_frame); #endif