home *** CD-ROM | disk | FTP | other *** search
/ C++ Games Programming / CPPGAMES.ISO / fgl / fglight / exbas.arj / TEMP / 03-06.BAS < prev    next >
BASIC Source File  |  1995-01-20  |  264b  |  19 lines

  1. REM $INCLUDE: 'fastgraf.bi'
  2.  
  3. DEFINT A-Z
  4.  
  5. OldMode = FGgetmode
  6. NewMode = FGautomode
  7. FGsetmode NewMode
  8.  
  9. FGsetcolor 15
  10. FGtext "I'm running in mode", 19
  11. FGtext STR$(NewMode), LEN(STR$(NewMode))
  12. FGtext ".", 1
  13. FGwaitkey
  14.  
  15. FGsetmode OldMode
  16. FGreset
  17.  
  18. END
  19.