]> git.mxchange.org Git - flightgear.git/commitdiff
screenPrint() is obsolete. Use screen.log.write() for the same purpose,
authormfranz <mfranz>
Mon, 13 Feb 2006 19:59:07 +0000 (19:59 +0000)
committermfranz <mfranz>
Mon, 13 Feb 2006 19:59:07 +0000 (19:59 +0000)
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

index e59a6b79e175335697e765fd5ca0bbf516142d69..989c49173f49415dbf5fa385d64c9208ccaf1dea 100644 (file)
@@ -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; }