From 96665adcce55c66acbde48c098b4bb8a23aa8eab Mon Sep 17 00:00:00 2001 From: david Date: Sun, 6 Jan 2002 18:36:34 +0000 Subject: [PATCH] Corrected some typos for 3DFX support. --- src/Main/globals.hxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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; } -- 2.39.5