Changeset 10540
- Timestamp:
- 08/20/09 17:14:41 (4 years ago)
- Location:
- OpenSceneGraph/branches/OpenSceneGraph-2.8/src/osgPlugins
- Files:
-
- 3 modified
-
. (modified) (1 prop)
-
bsp/VBSPReader.cpp (modified) (2 diffs, 1 prop)
-
mdl/MDLReader.cpp (modified) (2 diffs, 1 prop)
Legend:
- Unmodified
- Added
- Removed
-
OpenSceneGraph/branches/OpenSceneGraph-2.8/src/osgPlugins
- Property svn:mergeinfo set to /OpenSceneGraph/trunk:10539
-
OpenSceneGraph/branches/OpenSceneGraph-2.8/src/osgPlugins/bsp/VBSPReader.cpp
- Property svn:mergeinfo set to /OpenSceneGraph/trunk/src/osgPlugins/bsp/VBSPReader.cpp:10482-10484,10539
r10485 r10540 5 5 #include <osg/Object> 6 6 #include <osg/Material> 7 #include <osg/Math> 7 8 #include <osg/MatrixTransform> 8 9 #include <osg/Node> … … 872 873 if (!token.empty()) 873 874 { 874 alpha = atof(token.c_str());875 alpha = osg::asciiToDouble(token.c_str()); 875 876 } 876 877 } -
OpenSceneGraph/branches/OpenSceneGraph-2.8/src/osgPlugins/mdl/MDLReader.cpp
- Property svn:mergeinfo set to /OpenSceneGraph/trunk/src/osgPlugins/mdl/MDLReader.cpp:10093,10482-10483,10539
r10485 r10540 5 5 #include <osg/Object> 6 6 #include <osg/Material> 7 #include <osg/Math> 7 8 #include <osg/MatrixTransform> 8 9 #include <osg/Node> … … 355 356 if (!token.empty()) 356 357 { 357 alpha = atof(token.c_str());358 alpha = osg::asciiToDouble(token.c_str()); 358 359 } 359 360 }
