aboutsummaryrefslogtreecommitdiff
path: root/engines/sword25/gfx/opengl
diff options
context:
space:
mode:
authorEugene Sandulenko2010-09-03 21:49:28 +0000
committerEugene Sandulenko2010-10-12 23:33:23 +0000
commitdcf70dc6a66c054c6cb9398ff68a12c38cc4223c (patch)
tree0079ae29667772bb36f63a90a9fc40dfee7312b5 /engines/sword25/gfx/opengl
parent99e8337e633e18f31d91e73c4e0a71983124fd77 (diff)
downloadscummvm-rg350-dcf70dc6a66c054c6cb9398ff68a12c38cc4223c.tar.gz
scummvm-rg350-dcf70dc6a66c054c6cb9398ff68a12c38cc4223c.tar.bz2
scummvm-rg350-dcf70dc6a66c054c6cb9398ff68a12c38cc4223c.zip
SWORD25: Remove redundant colorspace defines and code.
svn-id: r53312
Diffstat (limited to 'engines/sword25/gfx/opengl')
-rw-r--r--engines/sword25/gfx/opengl/swimage.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/sword25/gfx/opengl/swimage.cpp b/engines/sword25/gfx/opengl/swimage.cpp
index 33d7435e02..a6a6468f65 100644
--- a/engines/sword25/gfx/opengl/swimage.cpp
+++ b/engines/sword25/gfx/opengl/swimage.cpp
@@ -77,7 +77,7 @@ SWImage::SWImage(const Common::String &filename, bool &result) :
// Das Bild dekomprimieren
byte *pUncompressedData;
- if (!ImageLoader::LoadImage(pFileData, fileSize, GraphicEngine::CF_ABGR32, pUncompressedData, _width, _height, pitch)) {
+ if (!ImageLoader::LoadImage(pFileData, fileSize, GraphicEngine::CF_ARGB32, pUncompressedData, _width, _height, pitch)) {
BS_LOG_ERRORLN("Could not decode image.");
return;
}