DREAMWEB: Correct monitor header message alignment in floppy versions.

This commit is contained in:
D G Turner 2011-12-29 08:09:29 +00:00
parent 6a2522a142
commit f592849653

View File

@ -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++;