From aef5e36cf158c52f705ed0bf730abdb5f2982c30 Mon Sep 17 00:00:00 2001 From: Robert Osfield Date: Mon, 28 Jun 2010 17:27:56 +0000 Subject: [PATCH] From Stephan Huber, fixed typo. --- src/osgWrappers/serializers/osgTerrain/TerrainTile.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/osgWrappers/serializers/osgTerrain/TerrainTile.cpp b/src/osgWrappers/serializers/osgTerrain/TerrainTile.cpp index f60785a96..1a6eaf448 100644 --- a/src/osgWrappers/serializers/osgTerrain/TerrainTile.cpp +++ b/src/osgWrappers/serializers/osgTerrain/TerrainTile.cpp @@ -67,7 +67,7 @@ static bool checkTileLoadedCallback( const osgTerrain::TerrainTile& tile ) static bool readTileLoadedCallback( osgDB::InputStream& is, osgTerrain::TerrainTile& tile ) { if ( osgTerrain::TerrainTile::getTileLoadedCallback().valid() ) - osgTerrain::TerrainTile::getTileLoadedCallback()->loaded( &terrainTile, is.getOptions() ); + osgTerrain::TerrainTile::getTileLoadedCallback()->loaded( &tile, is.getOptions() ); return true; }