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

  1. REM $INCLUDE: 'fastgraf.bi'
  2.  
  3. DEFINT A-Z
  4.  
  5. FGsetmode 19
  6.  
  7. Status = FGshowflic("GLASS.FLI"+CHR$(0),1,0)
  8. If Status = 0 THEN FGwaitkey
  9.  
  10. FGsetmode 3
  11. FGreset
  12.  
  13. IF Status = 1 THEN
  14.    PRINT "GLASS.FLI not found."
  15. ELSEIF Status = 2 THEN
  16.    PRINT "GLASS.FLI is not an FLI or FLC file."
  17. END IF
  18. END
  19.