diff options
Diffstat (limited to 'engines')
-rw-r--r-- | engines/gob/videoplayer.cpp | 10 |
1 files changed, 3 insertions, 7 deletions
diff --git a/engines/gob/videoplayer.cpp b/engines/gob/videoplayer.cpp index b707612c7b..fe034304e1 100644 --- a/engines/gob/videoplayer.cpp +++ b/engines/gob/videoplayer.cpp @@ -167,15 +167,11 @@ VideoPlayer::~VideoPlayer() { bool VideoPlayer::findFile(char *fileName, Type &which) { char *extStart = strrchr(fileName, '.'); - // There's no empty extension - if (extStart == (fileName + strlen(fileName) - 1)) { + // There's no empty extension, Or the filename with its current extension is not found + if ((extStart == (fileName + strlen(fileName) - 1)) || (!_vm->_dataIO->existData(fileName))) { *extStart = 0; extStart = 0; - } else - if (!_vm->_dataIO->existData(fileName)) { - *extStart = 0; - extStart = 0; - } + } if (extStart) { // The requested file already has an extension. Verifying. |