aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--engines/dreamweb/monitor.cpp7
1 files changed, 6 insertions, 1 deletions
diff --git a/engines/dreamweb/monitor.cpp b/engines/dreamweb/monitor.cpp
index 256478d09b..ab6dd9efcb 100644
--- a/engines/dreamweb/monitor.cpp
+++ b/engines/dreamweb/monitor.cpp
@@ -292,7 +292,12 @@ void DreamWebEngine::scrollMonitor() {
}
void DreamWebEngine::showCurrentFile() {
- uint16 x = 178; // TODO: Looks like this hardcoded constant in the asm doesn't match the frame
+ uint16 x;
+ // Monitor Frame position differs between Floppy and CD version
+ if (isCD())
+ x = 178;
+ else
+ x = 199;
const char *currentFile = _currentFile + 1;
while (*currentFile) {
char c = *currentFile++;