Changeset 10088 for OpenSceneGraph/trunk/src/osgPlugins/3ds/readwrite.cpp
- Timestamp:
- 04/23/09 15:42:24 (4 years ago)
- Files:
-
- 1 modified
Legend:
- Unmodified
- Added
- Removed
-
OpenSceneGraph/trunk/src/osgPlugins/3ds/readwrite.cpp
r10076 r10088 374 374 { 375 375 ASSERT(strm); 376 strm->write((c har*)b,1);376 strm->write((const char*)b,1); 377 377 if (strm->fail()) { 378 378 return(LIB3DS_FALSE); … … 401 401 b[0]=(Lib3dsByte)((Lib3dsWord)w & 0x00FF); 402 402 403 strm->write((c har*)b,2);403 strm->write((const char*)b,2); 404 404 if (strm->fail()) { 405 405 return(LIB3DS_FALSE); … … 430 430 b[0]=(Lib3dsByte)(((Lib3dsDword)d & 0x000000FF)); 431 431 432 strm->write((c har*)b,4);432 strm->write((const char*)b,4); 433 433 if (strm->fail()) { 434 434 return(LIB3DS_FALSE);
