From 2d954b221a75b80e1ca74cd4e89d1303d5d43cda Mon Sep 17 00:00:00 2001 From: Andrew Pamment Date: Sat, 25 Dec 2021 10:24:49 +1000 Subject: [PATCH] Updates for libquinn --- doomgeneric/doomgeneric_quinn.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/doomgeneric/doomgeneric_quinn.c b/doomgeneric/doomgeneric_quinn.c index 881c1f1..b248848 100644 --- a/doomgeneric/doomgeneric_quinn.c +++ b/doomgeneric/doomgeneric_quinn.c @@ -140,12 +140,12 @@ void DG_Init() { quinn_fill_rect(window_handle, surface, DOOMGENERIC_RESX, DOOMGENERIC_RESY, 0, 0, DOOMGENERIC_RESX, DOOMGENERIC_RESY, 0xff000000); quinn_render(window_handle, surface, loading, 147, 104, 233, 120, DOOMGENERIC_RESX, DOOMGENERIC_RESY); free(loading); - quinn_process(); + quinn_process(0); } void DG_DrawFrame() { quinn_render_no_alpha(window_handle, surface, DG_ScreenBuffer, DOOMGENERIC_RESX, DOOMGENERIC_RESY, 0, 0, DOOMGENERIC_RESX, DOOMGENERIC_RESY); - quinn_process(); + quinn_process(0); } void DG_SleepMs(uint32_t ms) {