mirror of
https://github.com/libretro/scummvm.git
synced 2025-01-07 18:31:37 +00:00
HPL1: disable loading files from the cache folder
This commit is contained in:
parent
87656fbe55
commit
ee8f35ba22
@ -66,6 +66,7 @@ bool cMeshLoaderCollada::FillStructures(const tString &asFile,
|
||||
tColladaControllerVec *apColladaControllerVec,
|
||||
tColladaAnimationVec *apColladaAnimVec,
|
||||
cColladaScene *apColladaScene, bool abCache) {
|
||||
abCache = false; // FIXME: find a way to enable the use of cache files
|
||||
bool bLoadCache = false;
|
||||
// abCache = false;
|
||||
// Log("Loading %s\n",asFile.c_str());
|
||||
@ -96,10 +97,10 @@ bool cMeshLoaderCollada::FillStructures(const tString &asFile,
|
||||
apColladaControllerVec,
|
||||
apColladaAnimVec,
|
||||
apColladaScene);
|
||||
} else if (abCache) {
|
||||
Log("Cache out of date! Reloading collada file '%s'\n and generating cache files", asFile.c_str());
|
||||
}
|
||||
|
||||
Log("Cache out of date! Reloading collada file '%s'\n", asFile.c_str());
|
||||
|
||||
/////////////////////////////////////////////////
|
||||
// LOAD THE DOCUMENT
|
||||
// unsigned long lStartTime = mpSystem->GetLowLevel()->GetTime();
|
||||
|
Loading…
Reference in New Issue
Block a user