1
0
mirror of https://github.com/luanti-org/luanti.git synced 2025-10-12 16:15:20 +02:00

Fix unintentional error message with dynamic media

This commit is contained in:
sfan5
2024-05-14 23:12:49 +02:00
parent 39fd9b93c3
commit 93f4844c9c

View File

@@ -38,7 +38,7 @@ void FileCache::createDir()
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())
return false;