foxygit / doom Log in
commit 9057c76ed035e112248288c89bcff51bfd72f88c
Author:     Fabian Greffrath <fabian@greffrath.com>
AuthorDate: Thu Sep 3 11:32:57 2015 +0200
Commit:     Fabian Greffrath <fabian@greffrath.com>
CommitDate: Thu Sep 3 11:32:57 2015 +0200

    forgot to declare functions void(void)
---
 src/i_video.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/i_video.c b/src/i_video.c
index 1602ba5f..74f13d67 100644
--- a/src/i_video.c
+++ b/src/i_video.c
@@ -934,7 +934,7 @@ static boolean BlitArea(int x1, int y1, int x2, int y2)

 static int readtic = 0;

-void I_PrepareRead()
+void I_PrepareRead(void)
 {
     byte *screenloc = I_VideoBuffer
                     + (SCREENHEIGHT - LOADING_DISK_H) * SCREENWIDTH
@@ -956,7 +956,7 @@ void I_PrepareRead()
     }
 }

-void I_BeginRead()
+void I_BeginRead(void)
 {
     if (!initialized || disk == NULL)
         return;