aboutsummaryrefslogtreecommitdiff
path: root/scumm/script_v5.cpp
diff options
context:
space:
mode:
authorJonathan Gray2003-04-27 11:01:42 +0000
committerJonathan Gray2003-04-27 11:01:42 +0000
commit07bd555101ae3333339e0bbc20f72dd451d20e05 (patch)
tree1a7947e29ba59cb01cd19140a36583a658f79fd4 /scumm/script_v5.cpp
parent3d52e4510bfb4b214106a99bb091163e62f8c18b (diff)
downloadscummvm-rg350-07bd555101ae3333339e0bbc20f72dd451d20e05.tar.gz
scummvm-rg350-07bd555101ae3333339e0bbc20f72dd451d20e05.tar.bz2
scummvm-rg350-07bd555101ae3333339e0bbc20f72dd451d20e05.zip
this seems to be needed for indy3ega as well, note that the text is largely the wrong colour and you can't see the book or picture of the window in the diary still
svn-id: r7152
Diffstat (limited to 'scumm/script_v5.cpp')
-rw-r--r--scumm/script_v5.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/scumm/script_v5.cpp b/scumm/script_v5.cpp
index a028e8d516..19b287c1ae 100644
--- a/scumm/script_v5.cpp
+++ b/scumm/script_v5.cpp
@@ -2482,7 +2482,7 @@ void Scumm_v5::decodeParseString() {
// FIXME: Store positions, this is needed for Indy3 (Grail Diary)..
// I don't believe this is the correct fix, may cause other problems
// later in the game.
- if (_gameId == GID_INDY3_256) {
+ if ((_gameId == GID_INDY3_256) || (_gameId == GID_INDY3)) {
_string[textSlot].t_xpos = _string[textSlot].xpos;
_string[textSlot].t_ypos = _string[textSlot].ypos;
}