mirror of
https://github.com/libretro/scummvm.git
synced 2025-04-03 23:31:57 +00:00
DREAMWEB: Correct monitor header message alignment in floppy versions.
This commit is contained in:
parent
6a2522a142
commit
f592849653
@ -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++;
|
||||
|
Loading…
x
Reference in New Issue
Block a user