diff -r 7daec2f067a9 -r 26ebb2f1e6e6 src/context.c --- a/src/context.c Wed Apr 10 19:43:34 2024 +0200 +++ b/src/context.c Fri Apr 12 22:03:15 2024 +0200 @@ -66,7 +66,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_INITILIZED); asc_dprintf("Ascension context initialized."); } @@ -104,7 +104,7 @@ while (SDL_PollEvent(&event)) { switch (event.type) { case SDL_QUIT: - asc_set_flag(&asc_context.flags, ASC_FLAG_QUIT); + asc_set_flag(asc_context.flags, ASC_FLAG_QUIT); break; case SDL_WINDOWEVENT: { if (event.window.event == SDL_WINDOWEVENT_RESIZED)