--- a/src/context.c Thu Jul 03 23:01:52 2025 +0200 +++ b/src/context.c Fri Jul 04 23:23:29 2025 +0200 @@ -49,7 +49,7 @@ void asc_font_cache_destroy(void); void asc_context_initialize(void) { - if (asc_test_flag(asc_context.flags, ASC_FLAG_INITILIZED)) + if (asc_test_flag(asc_context.flags, ASC_FLAG_INITIALIZED)) return; memset(&asc_context, 0, sizeof(AscContext)); @@ -88,7 +88,7 @@ } SDL_ClearError(); asc_context.total_nanos = asc_nanos(); - asc_set_flag(asc_context.flags, ASC_FLAG_INITILIZED); + asc_set_flag(asc_context.flags, ASC_FLAG_INITIALIZED); asc_dprintf("Ascension context initialized."); }