diff options
-rw-r--r-- | ChangeLog | 2 | ||||
-rw-r--r-- | src/resources/image.cpp | 2 |
2 files changed, 3 insertions, 1 deletions
@@ -4,6 +4,8 @@ files to be included with the release. * src/utils/fastsqrt.h: Fixed warning about strict-aliasing rules. * src/Makefile.am: Don't die on warnings by default. + * src/resources/image.cpp: Fixed image loading in software mode to not + assume all images are 32-bit. 2007-06-02 Bjørn Lindeijer <bjorn@lindeijer.nl> diff --git a/src/resources/image.cpp b/src/resources/image.cpp index e2220088..393c443c 100644 --- a/src/resources/image.cpp +++ b/src/resources/image.cpp @@ -192,7 +192,7 @@ Image* Image::load(void *buffer, unsigned int bufferSize, { Uint8 r, g, b, a; SDL_GetRGBA( - ((Uint32*) tmpImage->pixels)[i], + ((char*) tmpImage->pixels)[i * tmpImage->format->BitsPerPixel], tmpImage->format, &r, &g, &b, &a); |