removed unused function
authorHolger Schemel <info@artsoft.org>
Sun, 18 Feb 2018 12:28:31 +0000 (13:28 +0100)
committerHolger Schemel <info@artsoft.org>
Sun, 18 Feb 2018 12:28:31 +0000 (13:28 +0100)
src/tools.c
src/tools.h

index 1230cf0ab482d1e455907ffba4c854c0677b48c8..8718bbe1055f1771ee7f869bfeafa1c72aa3756b 100644 (file)
@@ -1444,13 +1444,6 @@ void getSizedGraphicSourceExt(int graphic, int frame, int tilesize,
   *y = *y * tilesize / g->tile_size;
 }
 
-void getFixedGraphicSourceExt(int graphic, int frame, Bitmap **bitmap,
-                             int *x, int *y, boolean get_backside)
-{
-  getSizedGraphicSourceExt(graphic, frame, TILESIZE, bitmap, x, y,
-                          get_backside);
-}
-
 void getSizedGraphicSource(int graphic, int frame, int tilesize,
                           Bitmap **bitmap, int *x, int *y)
 {
index b267c8bfd1dce3911f5994766bbdd5a3c5c96ae9..38b1c5c1ce3e58e658044a6588bd664284d6411c 100644 (file)
@@ -140,7 +140,6 @@ void DrawPlayer(struct PlayerInfo *);
 void getGraphicSourceBitmap(int, int, Bitmap **);
 void getGraphicSourceXY(int, int, int *, int *, boolean);
 void getSizedGraphicSourceExt(int, int, int, Bitmap **, int *, int *, boolean);
-void getFixedGraphicSourceExt(int, int, Bitmap **, int *, int *, boolean);
 void getSizedGraphicSource(int, int, int, Bitmap **, int *, int *);
 void getFixedGraphicSource(int, int, Bitmap **, int *, int *);
 void getMiniGraphicSource(int, Bitmap **, int *, int *);