rnd-20030126-3-src
[rocksndiamonds.git] / src / init.c
index 2f0998ae79618051cb856a06e29f75cbd9daf4cf..27088af6f34530286779dc76703df458e405edb5 100644 (file)
@@ -259,6 +259,20 @@ static void ReinitializeGraphics()
 
   InitGadgets();
   InitToons();
+
+
+
+  /* !!! TEST ONLY !!! */
+  {
+    Bitmap *tst_bitmap = graphic_info[IMG_SAND].bitmap;
+    Bitmap *tmp_bitmap = ZoomBitmap(tst_bitmap,
+                                   tst_bitmap->width / 2,
+                                   tst_bitmap->height / 2);
+
+    BlitBitmap(tmp_bitmap, tst_bitmap, 0, 0, 256, 224, 0, 448);
+
+    FreeBitmap(tmp_bitmap);
+  }
 }
 
 static void ReinitializeSounds()