aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--engines/sci/resource.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/engines/sci/resource.cpp b/engines/sci/resource.cpp
index e59f69513c..b71c6b9317 100644
--- a/engines/sci/resource.cpp
+++ b/engines/sci/resource.cpp
@@ -1909,8 +1909,8 @@ bool ResourceManager::detectHires() {
if (res) {
if (READ_LE_UINT16(res->data) == 0x0e) {
// SCI32 picture
- uint16 width = READ_LE_UINT16(res->data + 10);
- uint16 height = READ_LE_UINT16(res->data + 12);
+ uint16 width = READ_LE_UINT16(res->data + 14);
+ uint16 height = READ_LE_UINT16(res->data + 16);
if ((width == 320) && ((height == 190) || (height == 200)))
return false;
if ((width >= 600) || (height >= 400))