Ignore:
Timestamp:
03/22/07 11:48:21 (18 years ago)
Author:
mattausch
Message:

worked on randomupdatemanager

File:
1 edited

Legend:

Unmodified
Added
Removed
  • GTP/trunk/Lib/Vis/OnlineCullingCHC/OGRE/src/OgreSceneContentGenerator.cpp

    r1264 r2278  
    157157                return false; 
    158158 
    159         //mSceneNodes.clear(); // reset list of objects 
    160  
    161         while (!ifstr.eof())  
     159        while (1) 
    162160        { 
    163161                ifstr.getline(line, 256); 
     162 
     163                if (ifstr.eof()) 
     164                        break; 
     165 
    164166                sscanf(line, "%s %f %f %f %f %f %f %f %f %f %f", objName,  
    165167                        &position.x, &position.y, &position.z, 
Note: See TracChangeset for help on using the changeset viewer.