diff options
Diffstat (limited to 'engines/tony')
-rw-r--r-- | engines/tony/gfxcore.cpp | 2 |
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; } } |