aboutsummaryrefslogtreecommitdiff
path: root/engines/tony
diff options
context:
space:
mode:
authorFilippos Karapetis2014-10-28 15:46:19 +0200
committerFilippos Karapetis2014-10-28 15:46:19 +0200
commit338f3dc1035267f94c53e0705473c10b8251fe11 (patch)
treee34d644cc1b3078db5e5b3c336ab5ebf5d5bed57 /engines/tony
parent50c1d5c3a1622bc8d8cca1996fe0d64661bc2526 (diff)
downloadscummvm-rg350-338f3dc1035267f94c53e0705473c10b8251fe11.tar.gz
scummvm-rg350-338f3dc1035267f94c53e0705473c10b8251fe11.tar.bz2
scummvm-rg350-338f3dc1035267f94c53e0705473c10b8251fe11.zip
TONY: Fix image loading on BE systems again
This was originally changed in commit 43520ce4f3, but it has been removed accidentally in commit 84fb3e816d
Diffstat (limited to 'engines/tony')
-rw-r--r--engines/tony/gfxcore.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/tony/gfxcore.cpp b/engines/tony/gfxcore.cpp
index b8350eb8d7..2a32926c53 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;
}
}