mirror of
https://github.com/libretro/scummvm.git
synced 2025-02-04 09:56:30 +00:00
HUGO: When erroring out due to a missing file, tell the user which file is missing
This commit is contained in:
parent
b3471354d0
commit
754c250c65
@ -532,7 +532,7 @@ void FileManager::printBootText() {
|
|||||||
warning("printBootText - Skipping as H1 Dos may be a freeware");
|
warning("printBootText - Skipping as H1 Dos may be a freeware");
|
||||||
return;
|
return;
|
||||||
} else {
|
} else {
|
||||||
error("Missing startup file");
|
error("Missing startup file '%s'", getBootFilename());
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -574,7 +574,7 @@ void FileManager::readBootFile() {
|
|||||||
_vm->_boot.registered = kRegFreeware;
|
_vm->_boot.registered = kRegFreeware;
|
||||||
return;
|
return;
|
||||||
} else {
|
} else {
|
||||||
error("Missing startup file");
|
error("Missing startup file '%s'", getBootFilename());
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user