summaryrefslogtreecommitdiff
path: root/video/null_v.c
diff options
context:
space:
mode:
authortron <tron@openttd.org>2005-07-29 16:40:29 +0000
committertron <tron@openttd.org>2005-07-29 16:40:29 +0000
commitf359d1a39470eae65f4a4069b347d8e60a639682 (patch)
treea1e843572836c42daea97f267db294b298f0de37 /video/null_v.c
parent1a5de9ff9b7af53f9f8306c6a354aaa87779805d (diff)
downloadopenttd-f359d1a39470eae65f4a4069b347d8e60a639682.tar.xz
(svn r2748) Remove unused cruft from the main loop
Diffstat (limited to 'video/null_v.c')
-rw-r--r--video/null_v.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/video/null_v.c b/video/null_v.c
index 0e3e330b1..ecdd3486c 100644
--- a/video/null_v.c
+++ b/video/null_v.c
@@ -21,7 +21,7 @@ static void NullVideoStop(void) { free(_null_video_mem); }
static void NullVideoMakeDirty(int left, int top, int width, int height) {}
-static int NullVideoMainLoop(void)
+static void NullVideoMainLoop(void)
{
uint i;
@@ -30,8 +30,6 @@ static int NullVideoMainLoop(void)
_screen.dst_ptr = _null_video_mem;
UpdateWindows();
}
-
- return ML_QUIT;
}
static bool NullVideoChangeRes(int w, int h) { return false; }