mirror of
https://github.com/luanti-org/luanti.git
synced 2025-06-27 16:36:03 +00:00
Fix unintentional error message with dynamic media
This commit is contained in:
parent
39fd9b93c3
commit
93f4844c9c
1 changed files with 1 additions and 1 deletions
|
@ -38,7 +38,7 @@ void FileCache::createDir()
|
||||||
|
|
||||||
bool FileCache::loadByPath(const std::string &path, std::ostream &os)
|
bool FileCache::loadByPath(const std::string &path, std::ostream &os)
|
||||||
{
|
{
|
||||||
auto fis = open_ifstream(path.c_str(), true);
|
auto fis = open_ifstream(path.c_str(), false);
|
||||||
if (!fis.good())
|
if (!fis.good())
|
||||||
return false;
|
return false;
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue