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

  1. REM $INCLUDE: 'fastgraf.bi'
  2.  
  3. DEFINT A-Z
  4.  
  5. OldMode = FGgetmode
  6. FGsetmode 13
  7.  
  8. Matrix$ = CHR$(&h55) + CHR$(&hAA) + CHR$(&h55) + CHR$(&hAA)
  9. FGsetcolor 9
  10. FGdrect 0, 49, 0, 49, Matrix$
  11.  
  12. Matrix$ = CHR$(&hAA) + CHR$(&h55) + CHR$(&hAA) + CHR$(&h55)
  13. FGsetcolor 15
  14. FGdrect 0, 49, 0, 49, Matrix$
  15. FGwaitkey
  16.  
  17. FGsetmode OldMode
  18. FGreset
  19.  
  20. END
  21.