aboutsummaryrefslogtreecommitdiff
path: root/engines/hopkins/computer.cpp
diff options
context:
space:
mode:
authorPaul Gilbert2012-11-18 16:05:38 +1100
committerPaul Gilbert2012-11-18 16:05:38 +1100
commit5b7b4bc9dfdaff9cb8b0aa8fd3f3293eb2ae23d9 (patch)
tree8553a6d3ed053225a065eba3784e95dbc809dd6d /engines/hopkins/computer.cpp
parent9a996d66d443292f0485ea062a72b62a45cec43e (diff)
downloadscummvm-rg350-5b7b4bc9dfdaff9cb8b0aa8fd3f3293eb2ae23d9.tar.gz
scummvm-rg350-5b7b4bc9dfdaff9cb8b0aa8fd3f3293eb2ae23d9.tar.bz2
scummvm-rg350-5b7b4bc9dfdaff9cb8b0aa8fd3f3293eb2ae23d9.zip
HOPKINS: Fix for computer text display at the correct position
Diffstat (limited to 'engines/hopkins/computer.cpp')
-rw-r--r--engines/hopkins/computer.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/engines/hopkins/computer.cpp b/engines/hopkins/computer.cpp
index de477b6102..e43bedfeb2 100644
--- a/engines/hopkins/computer.cpp
+++ b/engines/hopkins/computer.cpp
@@ -94,8 +94,8 @@ void ComputerManager::settextcolor(int col) {
}
void ComputerManager::settextposition(int xp, int yp) {
- _textPosition.x = xp;
- _textPosition.y = yp;
+ _textPosition.x = xp << 3;
+ _textPosition.y = yp << 4;
}
void ComputerManager::COMPUT_HOPKINS(int mode) {