From e3cbfa14d95e8b7f48d9c3c78aef2d44eeff9e51 Mon Sep 17 00:00:00 2001 From: Holger Schemel Date: Sun, 18 Feb 2018 13:28:31 +0100 Subject: [PATCH] removed unused function --- src/tools.c | 7 ------- src/tools.h | 1 - 2 files changed, 8 deletions(-) diff --git a/src/tools.c b/src/tools.c index 1230cf0a..8718bbe1 100644 --- a/src/tools.c +++ b/src/tools.c @@ -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) { diff --git a/src/tools.h b/src/tools.h index b267c8bf..38b1c5c1 100644 --- a/src/tools.h +++ b/src/tools.h @@ -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 *); -- 2.34.1