From: david Date: Sun, 6 Jan 2002 18:36:34 +0000 (+0000) Subject: Corrected some typos for 3DFX support. X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=96665adcce55c66acbde48c098b4bb8a23aa8eab;p=flightgear.git Corrected some typos for 3DFX support. --- diff --git a/src/Main/globals.hxx b/src/Main/globals.hxx index 6167fe804..db6473150 100644 --- a/src/Main/globals.hxx +++ b/src/Main/globals.hxx @@ -65,7 +65,7 @@ private: // Fullscreen mode for old 3DFX cards. #if defined(FX) && defined(XMESA) - extern bool fullscreen; + bool fullscreen; #endif // An offset in seconds from the true time. Allows us to adjust @@ -128,7 +128,7 @@ public: #if defined(FX) && defined(XMESA) inline bool get_fullscreen() const { return fullscreen; } - inline bool set_fullscreen( bool f ) const { fullscreen = f; } + inline bool set_fullscreen( bool f ) { fullscreen = f; } #endif inline long int get_warp() const { return warp; }