aboutsummaryrefslogtreecommitdiff
path: root/engines
diff options
context:
space:
mode:
authorrichiesams2013-08-30 17:07:53 -0500
committerWillem Jan Palenstijn2013-09-24 13:59:39 +0200
commitef3e26a0730b070d2026641f554b525ae9f4b138 (patch)
tree1cb81266ea8a54d09bc20416185fec31f2ae9f1a /engines
parent7d1dca9ad10c3121fc44f991e6b21c68db939344 (diff)
downloadscummvm-rg350-ef3e26a0730b070d2026641f554b525ae9f4b138.tar.gz
scummvm-rg350-ef3e26a0730b070d2026641f554b525ae9f4b138.tar.bz2
scummvm-rg350-ef3e26a0730b070d2026641f554b525ae9f4b138.zip
ZVISION: Fix typo in PixelFormat
Diffstat (limited to 'engines')
-rw-r--r--engines/zvision/cursor.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/zvision/cursor.cpp b/engines/zvision/cursor.cpp
index 57859b9b46..4731d29f00 100644
--- a/engines/zvision/cursor.cpp
+++ b/engines/zvision/cursor.cpp
@@ -63,7 +63,7 @@ ZorkCursor::ZorkCursor(const Common::String &fileName)
assert(bytesRead == dataSize);
// Convert to RGB 565
- _surface.convertToInPlace(Graphics::PixelFormat(2, 5, 6, 6, 0, 11, 5, 0, 0));
+ _surface.convertToInPlace(Graphics::PixelFormat(2, 5, 6, 5, 0, 11, 5, 0, 0));
}
ZorkCursor::ZorkCursor(const ZorkCursor &other) {