# HG changeset patch # User Mike Becker # Date 1748510449 -7200 # Node ID 46aaf0bfb81e8097fbb8d9d6b8377be370b11942 # Parent 77c13e14a65fd744815c4d1a7be0cdbd76460057 remove unused context variable diff -r 77c13e14a65f -r 46aaf0bfb81e src/ascension/context.h --- 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);