diff options
author | Johannes Schickel | 2010-04-19 20:44:05 +0000 |
---|---|---|
committer | Johannes Schickel | 2010-04-19 20:44:05 +0000 |
commit | 498d1da18229b8de8faf2576e527a5ef82e7fdcf (patch) | |
tree | bad817ebc82b435f6a4b5cdfd742f81b565bd32f /graphics | |
parent | 589103f1b1a9fe3d76af48b9f5438c8ca163616e (diff) | |
download | scummvm-rg350-498d1da18229b8de8faf2576e527a5ef82e7fdcf.tar.gz scummvm-rg350-498d1da18229b8de8faf2576e527a5ef82e7fdcf.tar.bz2 scummvm-rg350-498d1da18229b8de8faf2576e527a5ef82e7fdcf.zip |
Cleanup.
svn-id: r48735
Diffstat (limited to 'graphics')
-rw-r--r-- | graphics/scaler/thumbnail_intern.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/graphics/scaler/thumbnail_intern.cpp b/graphics/scaler/thumbnail_intern.cpp index 9a3665abaa..329cf71186 100644 --- a/graphics/scaler/thumbnail_intern.cpp +++ b/graphics/scaler/thumbnail_intern.cpp @@ -110,7 +110,7 @@ static bool grabScreen565(Graphics::Surface *surf) { if (screenFormat.bytesPerPixel == 1) { palette = new byte[256 * 4]; assert(palette); - g_system->grabPalette(&palette[0], 0, 256); + g_system->grabPalette(palette, 0, 256); } for (uint y = 0; y < screen->h; ++y) { |