aboutsummaryrefslogtreecommitdiff
path: root/engines/saga/image.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'engines/saga/image.cpp')
-rw-r--r--engines/saga/image.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/saga/image.cpp b/engines/saga/image.cpp
index 99626737fd..7d8eb83550 100644
--- a/engines/saga/image.cpp
+++ b/engines/saga/image.cpp
@@ -91,7 +91,7 @@ int SagaEngine::decodeBGImage(const byte *image_data, size_t image_size,
unbankBGImage(out_buf, decode_buf, hdr.width, hdr.height);
// For some reason bg images in IHNM are upside down
- if (getGameType() == GType_IHNM && !flip) {
+ if (getGameId() == GID_IHNM && !flip) {
flipImage(out_buf, hdr.width, hdr.height);
}