diff options
author | Paul Gilbert | 2012-11-18 16:05:38 +1100 |
---|---|---|
committer | Paul Gilbert | 2012-11-18 16:05:38 +1100 |
commit | 5b7b4bc9dfdaff9cb8b0aa8fd3f3293eb2ae23d9 (patch) | |
tree | 8553a6d3ed053225a065eba3784e95dbc809dd6d /engines/hopkins/computer.cpp | |
parent | 9a996d66d443292f0485ea062a72b62a45cec43e (diff) | |
download | scummvm-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.cpp | 4 |
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) { |