Changeset 11180
- Timestamp:
- 03/10/10 11:10:57 (3 years ago)
- Files:
-
- 1 modified
Legend:
- Unmodified
- Added
- Removed
-
OpenSceneGraph/trunk/src/osgPlugins/3ds/ReaderWriter3DS.cpp
r11056 r11180 653 653 // 1. It relies on FILE* instead of iostreams (less safe) 654 654 // 2. It doesn't allow us to set a custom log output 655 std::ifstream fin(file .c_str(), std::ios_base::in | std::ios_base::binary);655 std::ifstream fin(fileName.c_str(), std::ios_base::in | std::ios_base::binary); 656 656 if (!fin.good()) return ReadResult::ERROR_IN_READING_FILE; 657 657 return doReadNode(fin, options, fileName);
