diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/video/sdl_v.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/video/sdl_v.cpp b/src/video/sdl_v.cpp index 399b5df12..d87e9e54e 100644 --- a/src/video/sdl_v.cpp +++ b/src/video/sdl_v.cpp @@ -476,7 +476,7 @@ const char *VideoDriver_SDL::Start(const char * const *parm) return SDL_CALL SDL_GetError(); } - SDL_CALL SDL_VideoDriverName(buf, 30); + SDL_CALL SDL_VideoDriverName(buf, sizeof buf); DEBUG(driver, 1, "SDL: using driver '%s'", buf); MarkWholeScreenDirty(); |