1
0
Fork 0

Windows uses ';' instead of ':' as a path separator.

This commit is contained in:
ehofman 2004-06-06 19:34:31 +00:00
parent 86a24bc9e8
commit 1bdcbd69f3

View file

@ -98,7 +98,12 @@ FGTileLoader::add( FGTileEntry* tile )
} else {
SGPath tmp;
tmp.set( globals->get_fg_root() );
tmp.append( "Scenery/Terrain:" );
tmp.append( "Scenery/Terrain" );
#ifdef _MSC_VER
tmp.append( ";");
#else
tmp.append( ":");
#endif
tmp.append(globals->get_fg_root() );
tmp.append( "Scenery/Objects" );
tile_path = tmp.str();