aboutsummaryrefslogtreecommitdiff
path: root/graphics/macgui
diff options
context:
space:
mode:
Diffstat (limited to 'graphics/macgui')
-rw-r--r--graphics/macgui/mactext.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/graphics/macgui/mactext.cpp b/graphics/macgui/mactext.cpp
index bab29125a6..044931da70 100644
--- a/graphics/macgui/mactext.cpp
+++ b/graphics/macgui/mactext.cpp
@@ -129,7 +129,7 @@ static const Common::U32String::value_type *readHex(uint16 *res, const Common::U
for (int i = 0; i < len; i++) {
char b = (char)*s++;
- *res <<= 8;
+ *res <<= 4;
if (tolower(b) > 'a')
*res |= tolower(b) - 'a';
else