fixed wrong variable type
[rocksndiamonds.git] / src / libgame / system.c
index 9f8e3075cc468ce87647497d090c302571245522..28d8ebae635b09027136b57abed0035f377ec8c9 100644 (file)
@@ -1193,7 +1193,7 @@ void ReloadCustomImage(Bitmap *bitmap, char *basename)
   free(new_bitmap);
 }
 
-static Bitmap *ZoomBitmap(Bitmap *src_bitmap, int zoom_width, int zoom_height)
+Bitmap *ZoomBitmap(Bitmap *src_bitmap, int zoom_width, int zoom_height)
 {
   return SDLZoomBitmap(src_bitmap, zoom_width, zoom_height);
 }