- Timestamp:
- 06/25/09 18:07:49 (4 years ago)
- Files:
-
- 1 modified
Legend:
- Unmodified
- Added
- Removed
-
OpenSceneGraph/trunk/src/osgPlugins/txp/ReaderWriterTXP.cpp
r9637 r10415 540 540 if(!token) 541 541 break; 542 locs[idx].zmin = (float)atof(token);542 locs[idx].zmin = osg::asciiToFloat(token); 543 543 nbTokenRead++; 544 544 … … 547 547 if(!token) 548 548 break; 549 locs[idx].zmax = (float)atof(token);549 locs[idx].zmax = osg::asciiToFloat(token); 550 550 nbTokenRead++; 551 551
