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:
Misty De Meo 2023-08-24 20:45:56 -07:00
parent 111ebfd2a0
commit 7eb19ad3bc
No known key found for this signature in database
GPG Key ID: 76CF846A2F674B2C

View File

@ -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 {