diff options
author | Max Horn | 2003-09-08 11:54:13 +0000 |
---|---|---|
committer | Max Horn | 2003-09-08 11:54:13 +0000 |
commit | ac72d0cec721ccd8420112c6f3092514218e2cc9 (patch) | |
tree | 3d12697983d81321ddd9d8b076c2ddd4d29c9ebd /backends/sdl | |
parent | 84a87ec24c3b26e4c1c0ee9c6482c0db6fbe8675 (diff) | |
download | scummvm-rg350-ac72d0cec721ccd8420112c6f3092514218e2cc9.tar.gz scummvm-rg350-ac72d0cec721ccd8420112c6f3092514218e2cc9.tar.bz2 scummvm-rg350-ac72d0cec721ccd8420112c6f3092514218e2cc9.zip |
removed some superfluous newlines
svn-id: r10086
Diffstat (limited to 'backends/sdl')
-rw-r--r-- | backends/sdl/fb2opengl.h | 2 | ||||
-rw-r--r-- | backends/sdl/sdl-common.cpp | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/backends/sdl/fb2opengl.h b/backends/sdl/fb2opengl.h index 690773dd8b..daf6091b13 100644 --- a/backends/sdl/fb2opengl.h +++ b/backends/sdl/fb2opengl.h @@ -236,7 +236,7 @@ int FB2GL::init(int width, int height, int xfix, int yfix, char _flags) { // warning("Screen BitsPerPixel: %d\n",screen->format->BitsPerPixel); if (!screen) { - warning("Couldn't start video res %dx%d\n", width, height); + warning("Couldn't start video res %dx%d", width, height); return 0; } diff --git a/backends/sdl/sdl-common.cpp b/backends/sdl/sdl-common.cpp index 1a453bb697..818861a25d 100644 --- a/backends/sdl/sdl-common.cpp +++ b/backends/sdl/sdl-common.cpp @@ -939,7 +939,7 @@ uint32 OSystem_SDL_Common::property(int param, Property *value) { _cdrom = SDL_CDOpen(value->cd_num); /* Did if open? Check if _cdrom is NULL */ if (!_cdrom) { - warning("Couldn't open drive: %s\n", SDL_GetError()); + warning("Couldn't open drive: %s", SDL_GetError()); } else { cd_num_loops = 0; cd_stop_time = 0; |