aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPaul Gilbert2014-02-02 15:15:30 -0500
committerPaul Gilbert2014-02-02 15:15:30 -0500
commitd536c0afb2e09e106b94554d484e2930e421d472 (patch)
tree46b6ed493b1b1f1cd63d22476f44ace9b0753ef7
parent3fab3ebdcf992e505be4cdd7b60fdea57754049a (diff)
downloadscummvm-rg350-d536c0afb2e09e106b94554d484e2930e421d472.tar.gz
scummvm-rg350-d536c0afb2e09e106b94554d484e2930e421d472.tar.bz2
scummvm-rg350-d536c0afb2e09e106b94554d484e2930e421d472.zip
VOYEUR: Fix another incorrect rectangle fill when viewing computer text
-rw-r--r--engines/voyeur/voyeur_game.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/voyeur/voyeur_game.cpp b/engines/voyeur/voyeur_game.cpp
index 1e81920446..e986118132 100644
--- a/engines/voyeur/voyeur_game.cpp
+++ b/engines/voyeur/voyeur_game.cpp
@@ -1204,7 +1204,7 @@ int VoyeurEngine::doComputerText(int maxLen) {
if (c == '\0') {
if (showEnd) {
_eventsManager.delay(90);
- _graphicsManager._drawPtr->_pos = Common::Point(54, 96);
+ _graphicsManager._drawPtr->_pos = Common::Point(96, 54);
_graphicsManager._drawPtr->_penColor = 254;
(*_graphicsManager._vPort)->sFillBox(196, 124);
_graphicsManager._fontPtr->_justify = ALIGN_LEFT;