diff options
author | rubidium <rubidium@openttd.org> | 2007-03-07 11:47:46 +0000 |
---|---|---|
committer | rubidium <rubidium@openttd.org> | 2007-03-07 11:47:46 +0000 |
commit | 4169bfba0604b33bad92389bd3eb6f9acde89f49 (patch) | |
tree | 5676d0d54be47c40d975fdeb1026317fc2a010db /src/video/sdl_v.cpp | |
parent | 3e2fae03bdfcc672cffd342e5fadf06cff41e4e6 (diff) | |
download | openttd-4169bfba0604b33bad92389bd3eb6f9acde89f49.tar.xz |
(svn r9050) -Codechange: Foo(void) -> Foo()
Diffstat (limited to 'src/video/sdl_v.cpp')
-rw-r--r-- | src/video/sdl_v.cpp | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/src/video/sdl_v.cpp b/src/video/sdl_v.cpp index 2fc625d17..226c54c63 100644 --- a/src/video/sdl_v.cpp +++ b/src/video/sdl_v.cpp @@ -49,12 +49,12 @@ static void UpdatePalette(uint start, uint count) SDL_CALL SDL_SetColors(_sdl_screen, pal, start, count); } -static void InitPalette(void) +static void InitPalette() { UpdatePalette(0, 256); } -static void CheckPaletteAnim(void) +static void CheckPaletteAnim() { if (_pal_last_dirty != -1) { UpdatePalette(_pal_first_dirty, _pal_last_dirty - _pal_first_dirty + 1); @@ -62,7 +62,7 @@ static void CheckPaletteAnim(void) } } -static void DrawSurfaceToScreen(void) +static void DrawSurfaceToScreen() { int n = _num_dirty_rects; if (n != 0) { @@ -88,7 +88,7 @@ static const uint16 default_resolutions[][2] = { {1920, 1200} }; -static void GetVideoModes(void) +static void GetVideoModes() { int i; SDL_Rect **modes; @@ -301,7 +301,7 @@ static uint32 ConvertSdlKeyIntoMy(SDL_keysym *sym) return (key << 16) + sym->unicode; } -static int PollEvent(void) +static int PollEvent() { SDL_Event ev; @@ -415,12 +415,12 @@ static const char *SdlVideoStart(const char * const *parm) return NULL; } -static void SdlVideoStop(void) +static void SdlVideoStop() { SdlClose(SDL_INIT_VIDEO); } -static void SdlVideoMainLoop(void) +static void SdlVideoMainLoop() { uint32 cur_ticks = SDL_CALL SDL_GetTicks(); uint32 next_tick = cur_ticks + 30; |