From aecea627e10ed64aea275be4311f2d3d6665b524 Mon Sep 17 00:00:00 2001 From: curt Date: Fri, 6 Nov 1998 14:46:59 +0000 Subject: [PATCH] Changes to track Bernie's updates to fgstream. --- Astro/stars.cxx | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/Astro/stars.cxx b/Astro/stars.cxx index 453b33aa..5fd7dd42 100644 --- a/Astro/stars.cxx +++ b/Astro/stars.cxx @@ -94,10 +94,10 @@ int fgStarsInit( void ) { // read in each line of the file while ( ! in.eof() && starcount < FG_MAX_STARS ) { - in.eat_comments(); + in >> skipcomment; string name; - getline( in.stream(), name, ',' ); - in.stream() >> starlist[starcount]; + getline( in, name, ',' ); + in >> starlist[starcount]; ++starcount; } @@ -252,6 +252,9 @@ void fgStarsRender( void ) { // $Log$ +// Revision 1.20 1998/11/06 14:47:02 curt +// Changes to track Bernie's updates to fgstream. +// // Revision 1.19 1998/10/16 23:27:21 curt // C++-ifying. // -- 2.39.5