From: curt Date: Fri, 29 May 1998 20:37:51 +0000 (+0000) Subject: Renamed .table to be
so we can add a .gz under DOS. X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=437c0b6f2965a13714bbae46d67f0d4e52707f74;p=flightgear.git Renamed
.table to be
so we can add a .gz under DOS. --- diff --git a/Time/light.cxx b/Time/light.cxx index b0e8ef3a0..79276d5e6 100644 --- a/Time/light.cxx +++ b/Time/light.cxx @@ -71,7 +71,7 @@ void fgLIGHT::Init( void ) { path[0] = '\0'; strcat(path, o->fg_root); strcat(path, "/Scenery/"); - strcat(path, "Ambient.table"); + strcat(path, "Ambient"); // initialize ambient table ambient_tbl = new fgINTERPTABLE(path); @@ -79,7 +79,7 @@ void fgLIGHT::Init( void ) { path[0] = '\0'; strcat(path, o->fg_root); strcat(path, "/Scenery/"); - strcat(path, "Diffuse.table"); + strcat(path, "Diffuse"); // initialize diffuse table diffuse_tbl = new fgINTERPTABLE(path); @@ -87,7 +87,7 @@ void fgLIGHT::Init( void ) { path[0] = '\0'; strcat(path, o->fg_root); strcat(path, "/Scenery/"); - strcat(path, "Sky.table"); + strcat(path, "Sky"); // initialize sky table sky_tbl = new fgINTERPTABLE(path); } @@ -167,6 +167,9 @@ void fgLightUpdate ( void ) { // $Log$ +// Revision 1.9 1998/05/29 20:37:51 curt +// Renamed
.table to be
so we can add a .gz under DOS. +// // Revision 1.8 1998/05/20 20:54:16 curt // Converted fgLIGHT to a C++ class. //