mirror of
https://github.com/holub/mame
synced 2025-05-21 21:29:15 +03:00
Logging for any unhandled case
This commit is contained in:
parent
86a3018c3e
commit
92d6911e0f
@ -2380,6 +2380,9 @@ void saturn_state::stv_vdp2_drawgfxzoom(
|
||||
{
|
||||
rectangle myclip;
|
||||
|
||||
if(stv2_current_tilemap.window_control & 6)
|
||||
popmessage("Window Enabled for Zoomed tiles");
|
||||
|
||||
if (!scalex || !scaley) return;
|
||||
|
||||
if (gfx->has_pen_usage() && transparency == STV_TRANSPARENCY_PEN)
|
||||
@ -2574,6 +2577,9 @@ void saturn_state::stv_vdp2_drawgfxzoom_rgb555(
|
||||
|
||||
gfxdata = m_vdp2.gfx_decode + code * 0x20;
|
||||
|
||||
if(stv2_current_tilemap.window_control & 6)
|
||||
popmessage("Window Enabled for RGB555 Zoom");
|
||||
|
||||
if (!scalex || !scaley) return;
|
||||
|
||||
#if 0
|
||||
@ -2797,6 +2803,9 @@ void saturn_state::stv_vdp2_drawgfx_rgb555( bitmap_rgb32 &dest_bmp, const rectan
|
||||
gfxdata = m_vdp2.gfx_decode + code * 0x20;
|
||||
sprite_screen_width = sprite_screen_height = 8;
|
||||
|
||||
if(stv2_current_tilemap.window_control & 6)
|
||||
popmessage("Window Enabled for RGB555");
|
||||
|
||||
/* KW 991012 -- Added code to force clip to bitmap boundary */
|
||||
myclip = clip;
|
||||
myclip &= dest_bmp.cliprect();
|
||||
@ -2907,6 +2916,9 @@ void saturn_state::stv_vdp2_drawgfx_rgb888( bitmap_rgb32 &dest_bmp, const rectan
|
||||
gfxdata = m_vdp2.gfx_decode + code * 0x20;
|
||||
sprite_screen_width = sprite_screen_height = 8;
|
||||
|
||||
if(stv2_current_tilemap.window_control & 6)
|
||||
popmessage("Window Enabled for RGB888");
|
||||
|
||||
/* KW 991012 -- Added code to force clip to bitmap boundary */
|
||||
myclip = clip;
|
||||
myclip &= dest_bmp.cliprect();
|
||||
@ -3015,6 +3027,9 @@ void saturn_state::stv_vdp2_drawgfx_alpha(bitmap_rgb32 &dest_bmp,const rectangle
|
||||
int x_index_base, y_index, sx, sy, ex, ey;
|
||||
int xinc, yinc;
|
||||
|
||||
if(stv2_current_tilemap.window_control & 6)
|
||||
popmessage("Window Enabled for Alpha");
|
||||
|
||||
xinc = flipx ? -1 : 1;
|
||||
yinc = flipy ? -1 : 1;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user