ref: 9057c76ed035e112248288c89bcff51bfd72f88c
parent: 10cdf908ff5b897322452503fecef6d5b28c5015
author: Fabian Greffrath <fabian@greffrath.com>
date: Thu Sep 3 07:32:57 EDT 2015
forgot to declare functions void(void)
--- a/src/i_video.c
+++ b/src/i_video.c
@@ -934,7 +934,7 @@
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_BeginRead()
+void I_BeginRead(void)
{
if (!initialized || disk == NULL)
return;