updates for windows build.

This commit is contained in:
Robert Osfield
2001-12-15 10:00:43 +00:00
parent 478274ae7d
commit def6234d8c
25 changed files with 143 additions and 142 deletions

View File

@@ -67,8 +67,8 @@ bool Point_writeLocalData(const Object& obj, Output& fw)
{
const Point& point = static_cast<const Point&>(obj);
fw.indent() << "size " << point.getSize() << endl;
fw.indent() << "fade_threshold_size " << point.getFadeThresholdSize() << endl;
fw.indent() << "distance_attenuation " << point.getDistanceAttenuation() << endl;
fw.indent() << "size " << point.getSize() << std::endl;
fw.indent() << "fade_threshold_size " << point.getFadeThresholdSize() << std::endl;
fw.indent() << "distance_attenuation " << point.getDistanceAttenuation() << std::endl;
return true;
}