summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/video/jalblend.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/video/jalblend.cpp')
-rw-r--r--src/mame/video/jalblend.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mame/video/jalblend.cpp b/src/mame/video/jalblend.cpp
index 6dc734c9229..dedc03fc866 100644
--- a/src/mame/video/jalblend.cpp
+++ b/src/mame/video/jalblend.cpp
@@ -94,8 +94,8 @@ rgb_t jaleco_blend_device::func(rgb_t dest, rgb_t addMe, u8 alpha)
return rgb_t(r,g,b);
}
-template<class _BitmapClass>
-void jaleco_blend_device::drawgfx_common(palette_device &palette,_BitmapClass &dest_bmp,const rectangle &clip,gfx_element *gfx,
+template<class BitmapClass>
+void jaleco_blend_device::drawgfx_common(palette_device &palette,BitmapClass &dest_bmp,const rectangle &clip,gfx_element *gfx,
u32 code,u32 color,bool flipx,bool flipy,int offsx,int offsy,
u8 transparent_color)
{
@@ -146,7 +146,7 @@ void jaleco_blend_device::drawgfx_common(palette_device &palette,_BitmapClass &d
for (int y = sy; y < ey; y++)
{
const u8 *source = source_base + y_index*gfx->rowbytes();
- typename _BitmapClass::pixel_t *dest = &dest_bmp.pix(y);
+ typename BitmapClass::pixel_t *dest = &dest_bmp.pix(y);
int x_index = x_index_base;
for (int x = sx; x < ex; x++)
{