diff options
author | Johannes Schickel | 2009-06-29 12:33:47 +0000 |
---|---|---|
committer | Johannes Schickel | 2009-06-29 12:33:47 +0000 |
commit | beca7b16c4a597d6c486020ed1439834b357d776 (patch) | |
tree | 48c8d8bf757652ed31e0311826f0c6a7788c2cb3 | |
parent | d120ca8f5ccaf3d431a61ca074740e518740d9e9 (diff) | |
download | scummvm-rg350-beca7b16c4a597d6c486020ed1439834b357d776.tar.gz scummvm-rg350-beca7b16c4a597d6c486020ed1439834b357d776.tar.bz2 scummvm-rg350-beca7b16c4a597d6c486020ed1439834b357d776.zip |
Indentation fix.
svn-id: r41940
-rw-r--r-- | backends/platform/sdl/sdl.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/backends/platform/sdl/sdl.cpp b/backends/platform/sdl/sdl.cpp index 5d156ebd88..b353c79495 100644 --- a/backends/platform/sdl/sdl.cpp +++ b/backends/platform/sdl/sdl.cpp @@ -490,7 +490,7 @@ void OSystem_SDL::quit() { void OSystem_SDL::setupIcon() { int x, y, w, h, ncols, nbytes, i; unsigned int rgba[256]; - unsigned int *icon; + unsigned int *icon; sscanf(scummvm_icon[0], "%d %d %d %d", &w, &h, &ncols, &nbytes); if ((w > 512) || (h > 512) || (ncols > 255) || (nbytes > 1)) { |