TurboSprite 2.0 Release Notes

** UNIT VERSION MISMATCH **

If you receive a Unit Version Mismatch when trying to install WinGPnt, try
the following steps:

1) Rename WINGPNT.DCU to WINGPNT.OLD
2) Rename WINGPNT.TRY to WINGPNT.DCU
3) Try installing again

Apparantly there is some discepancies that occured during the maintenance
upgrade of Delphi by Borland that causes this situation.

** RESIZING TWINGPAINTBOX **

I've discovered a small error in the WinRocks sample program.  It seems
that because of the code in FormResize, the WinGBitmap is always resized,
and a WinGStretchBlt always occurs.  Some video cards degrade horribly
when they stretch, so this should be corrected.  The trick is to execute
the resize code only on the second call to FormResize.  Create a variable
nResize, and initialize it to 0 in FormCreate.  Add these lines right after
FormResize:

	Inc( nResize );
	if nResize < 2 then Exit;

This will ensure that the WinGBitmap starts out in its normal state when
the app starts out.

** TDIBSPRITE PRIVATES **

When inheriting from TDIBSprite, I've found it necessary to have access to
the private variables.  These should really be protected, so feel free to
move them from private to protected.  In fact, you'll have to do this in
order to use some of the new sprite classes I'll be uploading soon.