1
0
Fork 0
mirror of https://github.com/AquariaOSE/Aquaria.git synced 2024-11-25 17:53:47 +00:00
This commit is contained in:
fgenesis 2024-06-25 04:53:31 +02:00
parent 5a6810e063
commit 5895703ac4

View file

@ -92,10 +92,10 @@ static void _TextureFileChanged(const std::string& fn, DirWatcher::Action act, v
case TextureMgr::RELOADED_OK:
break; // all good
case TextureMgr::FILE_ERROR:
debugLog("Texture [" + fn + "] is not loaded in-game, ignoring");
debugLog("_TextureFileChanged(): There was an issue reloading " + fn);
break;
case TextureMgr::NOT_LOADED:
debugLog("_TextureFileChanged(): There was an issue reloading " + fn);
debugLog("Texture [" + fn + "] is not loaded in-game, ignoring");
break;
}
}