From 3637851fd713a5ce837c8183132bc482eb6ff605 Mon Sep 17 00:00:00 2001 From: 42-Slices-of-Cheese <139883584+42-Slices-of-Cheese@users.noreply.github.com> Date: Thu, 6 Feb 2025 22:53:50 +0900 Subject: [PATCH] fixed I_EndRead error MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit fixed the error: w_wad.c:364:5: error: implicit declaration of function ‘I_EndRead’ --- fbdoom/i_video.h | 1 + 1 file changed, 1 insertion(+) diff --git a/fbdoom/i_video.h b/fbdoom/i_video.h index 3c7db19..145587c 100644 --- a/fbdoom/i_video.h +++ b/fbdoom/i_video.h @@ -110,6 +110,7 @@ void I_FinishUpdate (void); void I_ReadScreen (byte* scr); void I_BeginRead (void); +void I_EndRead(void); void I_SetWindowTitle(char *title);