From Stephane Lamoliatte, "fix to reading of DatabasePath property"

This commit is contained in:
Robert Osfield 2008-06-06 16:41:24 +00:00
parent 1ee9b09e06
commit 239f4e5c42

View File

@ -29,7 +29,7 @@ bool PagedLOD_readLocalData(Object& obj, Input& fr)
PagedLOD& lod = static_cast<PagedLOD&>(obj);
std::string path;
if (!fr.read("DatabasePath",path))
if (fr.read("DatabasePath",path))
{
lod.setDatabasePath(path);
}