Scaled blit, plus fix some level editor things

This commit is contained in:
elasota
2020-01-02 01:32:00 -05:00
parent 1c6ab800a7
commit 1da2851d3a
42 changed files with 571 additions and 273 deletions

View File

@@ -282,7 +282,7 @@ void KillOffScreenBitMap (GrafPtr offScreen)
void LoadGraphic (DrawSurface *surface, short resID)
{
Rect bounds;
PicHandle thePicture;
THandle<Picture> thePicture;
thePicture = GetPicture(resID);
if (thePicture == nil)
@@ -302,7 +302,7 @@ void LoadGraphic (DrawSurface *surface, short resID)
void LoadScaledGraphic (DrawSurface *surface, short resID, Rect *theRect)
{
PicHandle thePicture;
THandle<Picture> thePicture;
thePicture = GetPicture(resID);
if (thePicture == nil)