Thu, 29 May 2025 11:20:49 +0200
remove unused context variable
src/ascension/context.h | file | annotate | diff | comparison | revisions |
--- a/src/ascension/context.h Wed May 28 21:39:18 2025 +0200 +++ b/src/ascension/context.h Thu May 29 11:20:49 2025 +0200 @@ -66,7 +66,6 @@ AscInput input; AscWindow windows[ASC_MAX_WINDOWS]; AscFont active_font; - unsigned char fonts_loaded; unsigned char active_window; asc_col4i ink; uint64_t frame_nanos; @@ -120,7 +119,6 @@ #define asc_ink_rgba(r,g,b,a) asc_context.ink = (asc_col4i){(r),(g),(b),(a)} #define asc_ink_rgb(r,g,b) asc_context.ink = (asc_col4i){(r),(g),(b),255u} - void asc_set_font_path(const char *path); void asc_set_shader_path(const char *path); void asc_set_texture_path(const char *path);