]> git.mxchange.org Git - simgear.git/blobdiff - simgear/timing/timestamp.hxx
Add a function to calculate the normalmap from a regular texture.
[simgear.git] / simgear / timing / timestamp.hxx
index 3a31ba58df9f89d7317999c3e6e32df500aa5450..589c010ad2b16dce3df5215da5da413ed7cef477 100644 (file)
@@ -5,7 +5,7 @@
 
 // Written by Curtis Olson, started December 1998.
 //
-// Copyright (C) 1998  Curtis L. Olson  - curt@flightgear.org
+// Copyright (C) 1998  Curtis L. Olson  - http://www.flightgear.org/~curt
 //
 // This program is free software; you can redistribute it and/or
 // modify it under the terms of the GNU General Public License as
@@ -102,7 +102,10 @@ public:
     inline long get_usec() const { return usec; }
 };
 
-inline SGTimeStamp::SGTimeStamp() {
+inline SGTimeStamp::SGTimeStamp() :
+    seconds(0),
+    usec(0)
+{
 }
 
 inline SGTimeStamp::SGTimeStamp( const long s, const long u ) {