diff options
author | Max Horn | 2003-07-03 21:45:04 +0000 |
---|---|---|
committer | Max Horn | 2003-07-03 21:45:04 +0000 |
commit | 30d985afb96c07766fd887fefbf06e892c204637 (patch) | |
tree | 8cd5d5c3f534f74cdadac11cc8d3977f08ba501a /backends | |
parent | 6b7e12faedcd742892476911611e31b4ee769b57 (diff) | |
download | scummvm-rg350-30d985afb96c07766fd887fefbf06e892c204637.tar.gz scummvm-rg350-30d985afb96c07766fd887fefbf06e892c204637.tar.bz2 scummvm-rg350-30d985afb96c07766fd887fefbf06e892c204637.zip |
const correctness
svn-id: r8725
Diffstat (limited to 'backends')
-rw-r--r-- | backends/sdl/sdl-common.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/backends/sdl/sdl-common.cpp b/backends/sdl/sdl-common.cpp index f1ff07099a..fd720cd9b9 100644 --- a/backends/sdl/sdl-common.cpp +++ b/backends/sdl/sdl-common.cpp @@ -1178,7 +1178,7 @@ void OSystem_SDL_Common::setup_icon() { } memset(mask, 0, sizeof(mask)); for (h = 0; h < 32; h++) { - char *line = scummvm_icon[1 + ncols + h]; + const char *line = scummvm_icon[1 + ncols + h]; for (w = 0; w < 32; w++) { icon[w + 32 * h] = rgba[(int)line[w]]; if (rgba[(int)line[w]] & 0xFF000000) { |