1
0
Fork 0

Fix an indexing problem.

This commit is contained in:
ehofman 2004-07-16 20:02:36 +00:00
parent 6076c83904
commit 6a19060d2c

View file

@ -129,7 +129,7 @@ void FGGlobals::set_fg_scenery (const string &scenery) {
for (unsigned i = 0; i < path_list.size(); i++) {
ulDir *d = ulOpenDir( path_list[0].c_str() );
ulDir *d = ulOpenDir( path_list[i].c_str() );
if (d == NULL)
continue;
ulCloseDir( d );