[Scummvm-cvs-logs] scummvm master -> 338f3dc1035267f94c53e0705473c10b8251fe11

bluegr bluegr at gmail.com
Tue Oct 28 14:47:37 CET 2014


This automated email contains information about 1 new commit which have been
pushed to the 'scummvm' repo located at https://github.com/scummvm/scummvm .

Summary:
338f3dc103 TONY: Fix image loading on BE systems again


Commit: 338f3dc1035267f94c53e0705473c10b8251fe11
    https://github.com/scummvm/scummvm/commit/338f3dc1035267f94c53e0705473c10b8251fe11
Author: Filippos Karapetis (bluegr at gmail.com)
Date: 2014-10-28T15:46:19+02:00

Commit Message:
TONY: Fix image loading on BE systems again

This was originally changed in commit 43520ce4f3, but it has been
removed accidentally in commit 84fb3e816d

Changed paths:
    engines/tony/gfxcore.cpp



diff --git a/engines/tony/gfxcore.cpp b/engines/tony/gfxcore.cpp
index b8350eb..2a32926 100644
--- a/engines/tony/gfxcore.cpp
+++ b/engines/tony/gfxcore.cpp
@@ -1958,7 +1958,7 @@ void RMGfxSourceBuffer16::prepareImage() {
 
 		pixel = (r << 11) | (g << 6) | b;
 
-		WRITE_LE_UINT16(&buf[i], pixel);
+		buf[i] = pixel;
 	}
 }
 






More information about the Scummvm-git-logs mailing list