home *** CD-ROM | disk | FTP | other *** search
/ Sauce 'n' Code 3 / sauce-n-code-03.adf / Articles / screen_effects.txt / screen_effects.txt
Text File  |  1996-01-21  |  1KB  |  33 lines

  1.    __________   __________   __________   __________   __________   __________ 
  2.   | ` |  _|· | | ` |  _|· | | ` |  _|· | | ` |  _|· | | ` |  _|· | | ` |  _|· |
  3.   |_,_|_|/_,_| |_,_|_|/_,_| |_,_|_|/_,_| |_,_|_|/_,_| |_,_|_|/_,_| |_,_|_|/_,_|
  4. ================================================================================
  5.                                   SCREEN STUFF
  6. ================================================================================
  7.  
  8. The  source code to stretch, squash and zoom you average AMOS screen is a little
  9. dodgy.   Nothing  wrong  with  the  coding  but  it's just too bloody slow on an
  10. unexpanded  A1200.  Fast RAM is a definet must to make them run at anything like
  11. a decent speed.
  12.  
  13. I  didn't  realise  this until I gave the code to a mate before Sauce N Code was
  14. released and he said it was too slow to be useful on his A1200.  Thanx Bal.
  15.  
  16. Find  a  use if you can, maybe make it so the screen effects only happen if fast
  17. RAM is detected using something like:
  18.  
  19.  
  20.       If Fast Free>0
  21.           SCR_EFFECTS=1
  22.       End If
  23.  
  24.       If SCR_EFFECTS=1
  25.         do ya stuff...
  26.       End If
  27.  
  28.  
  29.  
  30.  
  31.  
  32.  
  33.