From a9228ee582e4b798bf0b93e8993505a1e851bf30 Mon Sep 17 00:00:00 2001 From: mfranz Date: Mon, 13 Feb 2006 19:59:07 +0000 Subject: [PATCH] screenPrint() is obsolete. Use screen.log.write() for the same purpose, or write to the color properties in /sim/screen/. If this Nasal/GUI implementation turns out to be too slow, we'll write a generic OpenGL/plib version simliar to the ATCdisplay code. (OK'ed by Andy and Stuart) --- src/Main/globals.hxx | 7 ------- 1 file changed, 7 deletions(-) diff --git a/src/Main/globals.hxx b/src/Main/globals.hxx index e59a6b79e..989c49173 100644 --- a/src/Main/globals.hxx +++ b/src/Main/globals.hxx @@ -73,7 +73,6 @@ class FGControls; class FGFlightPlanDispatcher; class FGIO; class FGNavList; -class FGNasalDisplay; class FGTACANList; class FGFixList; class FGLight; @@ -210,9 +209,6 @@ private: FGNavList *carrierlist; FGTACANList *channellist; FGFixList *fixlist; - - // Scripting display - FGNasalDisplay * Nasal_display; #ifdef FG_MPLAYER_AS @@ -363,9 +359,6 @@ public: inline FGIO* get_io() const { return io; } - inline FGNasalDisplay *get_Nasal_display() const { return Nasal_display; } - inline void set_Nasal_display( FGNasalDisplay *d ) {Nasal_display = d; } - inline FGNavList *get_navlist() const { return navlist; } inline void set_navlist( FGNavList *n ) { navlist = n; } inline FGNavList *get_loclist() const { return loclist; } -- 2.39.5