Skip to content

Commit

Permalink
DREAMWEB: Correct monitor header message alignment in floppy versions.
Browse files Browse the repository at this point in the history
  • Loading branch information
digitall committed Dec 29, 2011
1 parent 6a2522a commit f592849
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion engines/dreamweb/monitor.cpp
Expand Up @@ -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++;
Expand Down

0 comments on commit f592849

Please sign in to comment.