aboutsummaryrefslogtreecommitdiff
path: root/engines/queen/logic.cpp
diff options
context:
space:
mode:
authorGregory Montoir2006-11-04 12:00:31 +0000
committerGregory Montoir2006-11-04 12:00:31 +0000
commit5a902f8f7a40f2f2182a0b2149959f8889c468ef (patch)
tree4c388ea299b79dab8b781724f506d50ff6a35246 /engines/queen/logic.cpp
parentb8ed3bc87f5ddf397959d9ccc266a825f69cc059 (diff)
downloadscummvm-rg350-5a902f8f7a40f2f2182a0b2149959f8889c468ef.tar.gz
scummvm-rg350-5a902f8f7a40f2f2182a0b2149959f8889c468ef.tar.bz2
scummvm-rg350-5a902f8f7a40f2f2182a0b2149959f8889c468ef.zip
rewrote FOTAQ game version detection code in a - if I didn't break anything - better way (no more duplicated code, more accurate game description in the launcher...)
svn-id: r24598
Diffstat (limited to 'engines/queen/logic.cpp')
-rw-r--r--engines/queen/logic.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/queen/logic.cpp b/engines/queen/logic.cpp
index b1675f38b3..91960fd8df 100644
--- a/engines/queen/logic.cpp
+++ b/engines/queen/logic.cpp
@@ -190,7 +190,7 @@ void Logic::initialise() {
_currentRoom = _objectData[_entryObj].room;
_entryObj = 0;
- if (memcmp(ptr, _vm->resource()->JASVersion(), 5) != 0) {
+ if (memcmp(ptr, _vm->resource()->getJASVersion(), 5) != 0) {
warning("Unexpected queen.jas file format");
}