aboutsummaryrefslogtreecommitdiff
path: root/engines/queen/journal.cpp
diff options
context:
space:
mode:
authorGregory Montoir2007-02-24 18:39:08 +0000
committerGregory Montoir2007-02-24 18:39:08 +0000
commit11e679845d49f5a13e7311b6e5bebc7827a26878 (patch)
tree18385f7c9a0d5c26b81acc2daeae15ce1142edea /engines/queen/journal.cpp
parentd350830d7c209a02d9dde3801390c902980dbde7 (diff)
downloadscummvm-rg350-11e679845d49f5a13e7311b6e5bebc7827a26878.tar.gz
scummvm-rg350-11e679845d49f5a13e7311b6e5bebc7827a26878.tar.bz2
scummvm-rg350-11e679845d49f5a13e7311b6e5bebc7827a26878.zip
some fixes and additions for FOTAQ amiga versions
svn-id: r25825
Diffstat (limited to 'engines/queen/journal.cpp')
-rw-r--r--engines/queen/journal.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/engines/queen/journal.cpp b/engines/queen/journal.cpp
index 5e722ef111..11213e9714 100644
--- a/engines/queen/journal.cpp
+++ b/engines/queen/journal.cpp
@@ -117,7 +117,7 @@ void Journal::setup() {
_vm->graphics()->clearBobs();
_vm->display()->clearTexts(0, GAME_SCREEN_HEIGHT - 1);
_vm->bankMan()->eraseFrames(false);
- _vm->display()->textCurrentColor(INK_JOURNAL);
+ _vm->display()->textCurrentColor(_vm->display()->getInkColor(INK_JOURNAL));
_vm->grid()->clear(GS_ROOM);
for (int i = 0; i < MAX_ZONES; ++i) {
@@ -159,7 +159,7 @@ void Journal::update() {
if (_textField.enabled) {
int16 x = _textField.x + _textField.posCursor;
int16 y = _textField.y + _currentSaveSlot * _textField.h + 8;
- _vm->display()->drawBox(x, y, x + 6, y, INK_JOURNAL);
+ _vm->display()->drawBox(x, y, x + 6, y, _vm->display()->getInkColor(INK_JOURNAL));
}
_vm->display()->forceFullRefresh();
_vm->display()->update();