(svn r6303) -Codechange: Remove dead code
authortron
Sat, 02 Sep 2006 08:14:16 +0000
changeset 4518 2d003b496097
parent 4517 2ec69fcbafa8
child 4519 f53d829de680
(svn r6303) -Codechange: Remove dead code
gfx.c
--- a/gfx.c	Sat Sep 02 07:13:21 2006 +0000
+++ b/gfx.c	Sat Sep 02 08:14:16 2006 +0000
@@ -656,12 +656,10 @@
 typedef struct BlitterParams {
 	int start_x, start_y;
 	const byte *sprite;
-	const byte *sprite_org;
 	Pixel *dst;
 	int mode;
 	int width, height;
 	int width_org;
-	int height_org;
 	int pitch;
 } BlitterParams;
 
@@ -1359,8 +1357,8 @@
 	x += sprite->x_offs;
 	y += sprite->y_offs;
 	bp.width_org = bp.width = sprite->width;
-	bp.height_org = bp.height = sprite->height;
-	bp.sprite_org = bp.sprite = sprite->data;
+	bp.height = sprite->height;
+	bp.sprite = sprite->data;
 	bp.dst = dpi->dst_ptr;
 	bp.mode = mode;
 	bp.pitch = dpi->pitch;