projects
/
rocksndiamonds.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
a89ed2d
)
fixed drawing 'fixed' (standard sized) (element) graphics
author
Holger Schemel
<info@artsoft.org>
Sat, 2 Jan 2016 19:26:10 +0000
(20:26 +0100)
committer
Holger Schemel
<info@artsoft.org>
Sat, 2 Jan 2016 19:26:10 +0000
(20:26 +0100)
src/tools.c
patch
|
blob
|
history
diff --git
a/src/tools.c
b/src/tools.c
index 7a15c03e81b4973bbf5d29a533252ade5b43d30d..78f76fd8ce8f577f9ffdbc921a7964e24f7592da 100644
(file)
--- a/
src/tools.c
+++ b/
src/tools.c
@@
-1239,13
+1239,12
@@
void DrawGraphicThruMaskExt(DrawBuffer *d, int dst_x, int dst_y, int graphic,
void DrawFixedGraphicThruMaskExt(DrawBuffer *d, int dst_x, int dst_y,
int graphic, int frame)
{
- struct GraphicInfo *g = &graphic_info[graphic];
Bitmap *src_bitmap;
int src_x, src_y;
getFixedGraphicSource(graphic, frame, &src_bitmap, &src_x, &src_y);
- BlitBitmapMasked(src_bitmap, d, src_x, src_y,
g->width, g->height
,
+ BlitBitmapMasked(src_bitmap, d, src_x, src_y,
TILEX, TILEY
,
dst_x, dst_y);
}