From: curt Date: Sat, 2 May 1998 01:49:21 +0000 (+0000) Subject: Fixed a bug where the wrong variable was being initialized. X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=af753f2679868a1eacb263e8bfc3de13cfab8582;p=flightgear.git Fixed a bug where the wrong variable was being initialized. --- diff --git a/DEM/dem.cxx b/DEM/dem.cxx index 3aacf75c8..0e3351f18 100644 --- a/DEM/dem.cxx +++ b/DEM/dem.cxx @@ -375,7 +375,7 @@ void fgDEM::read_b_record( void ) { int fgDEM::parse( void ) { int i; - cur_row = 0; + cur_col = 0; read_a_record(); @@ -772,6 +772,9 @@ fgDEM::~fgDEM( void ) { // $Log$ +// Revision 1.6 1998/05/02 01:49:21 curt +// Fixed a bug where the wrong variable was being initialized. +// // Revision 1.5 1998/04/25 15:00:32 curt // Changed "r" to "rb" in gzopen() options. This fixes bad behavior in win32. //