Fixed: Display an error if unable to open a ogg file
This commit is contained in:
parent
c93112f3c5
commit
008071caa3
1 changed files with 7 additions and 4 deletions
|
@ -110,15 +110,18 @@ bool IAudioDecoder::getInfo(const std::string &filepath, std::string &artist, st
|
|||
CIFile ifile;
|
||||
ifile.setCacheFileOnOpen(false);
|
||||
ifile.allowBNPCacheFileOnOpen(false);
|
||||
ifile.open(lookup);
|
||||
return CAudioDecoderVorbis::getInfo(&ifile, artist, title);
|
||||
if (ifile.open(lookup))
|
||||
return CAudioDecoderVorbis::getInfo(&ifile, artist, title);
|
||||
|
||||
nlwarning("Unable to open: '%s'", filepath.c_str());
|
||||
}
|
||||
else
|
||||
{
|
||||
nlwarning("Music file type unknown: '%s'", type_lower.c_str());
|
||||
artist.clear(); title.clear();
|
||||
return false;
|
||||
}
|
||||
|
||||
artist.clear(); title.clear();
|
||||
return false;
|
||||
}
|
||||
|
||||
/// Get audio/container extensions that are currently supported by the nel sound library.
|
||||
|
|
Loading…
Reference in a new issue