]> git.mxchange.org Git - flightgear.git/commitdiff
Renamed <Table>.table to be <Table> so we can add a .gz under DOS.
authorcurt <curt>
Fri, 29 May 1998 20:37:51 +0000 (20:37 +0000)
committercurt <curt>
Fri, 29 May 1998 20:37:51 +0000 (20:37 +0000)
Time/light.cxx

index b0e8ef3a0e66077d5d1c6d3da879769a44220854..79276d5e69c6b523fca0f8783129604cbe7df7e6 100644 (file)
@@ -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>.table to be <Table> so we can add a .gz under DOS.
+//
 // Revision 1.8  1998/05/20 20:54:16  curt
 // Converted fgLIGHT to a C++ class.
 //