From: curt Date: Sat, 20 Apr 2002 20:53:54 +0000 (+0000) Subject: tweak. X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=c985d8846d6950cc9ddcb679365cf4b916b8ea1f;p=simgear.git tweak. --- diff --git a/simgear/timing/timestamp.cxx b/simgear/timing/timestamp.cxx index 7c8cffa9..3102732c 100644 --- a/simgear/timing/timestamp.cxx +++ b/simgear/timing/timestamp.cxx @@ -105,7 +105,7 @@ void SGTimeStamp::stamp() { // increment the time stamp by the number of microseconds (usec) SGTimeStamp operator + (const SGTimeStamp& t, const long& m) { -#ifdef WIN32 +#if defined( WIN32 ) return SGTimeStamp( 0, t.usec + m ); #else return SGTimeStamp( t.seconds + ( t.usec + m ) / 1000000,