(svn r2748) Remove unused cruft from the main loop

This commit is contained in:
tron
2005-07-29 16:40:29 +00:00
parent d2a891db7e
commit 452f8fee2a
6 changed files with 13 additions and 24 deletions

View File

@@ -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; }