mirror of
https://github.com/libretro/scummvm.git
synced 2025-04-03 23:31:57 +00:00
DIRECTOR: fix misc xlib finding movies
The only examples of this being used are for looking up movies. findMoviePath will handle a file extension mismatch, which happens in a D5 game that specifies a .DIR filename when the file on disc is .DXR.
This commit is contained in:
parent
111ebfd2a0
commit
7eb19ad3bc
@ -88,7 +88,7 @@ void Misc::m_getProfileString(int nargs) {
|
||||
|
||||
void Misc::m_isFilePresent(int nargs) {
|
||||
Common::String filename = g_lingo->pop().asString();
|
||||
Common::Path filePath = findPath(filename);
|
||||
Common::Path filePath = findMoviePath(filename);
|
||||
if (filePath.empty()) {
|
||||
g_lingo->push(Datum(0));
|
||||
} else {
|
||||
|
Loading…
x
Reference in New Issue
Block a user