summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
author angelosa <salese_corp_ltd@email.it>2018-01-07 01:54:26 +0100
committer angelosa <salese_corp_ltd@email.it>2018-01-07 01:54:26 +0100
commitae12b93bada133c0d15a5504ebaa824d95b6c390 (patch)
tree119eb02f6b4c3ba858e62271558427963ae59167
parentbda2c9e86169bd9418777ee91657984baef3d5d0 (diff)
This looks a fault in emulation, please comply ty (nw)
-rw-r--r--src/devices/video/stvvdp1.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/devices/video/stvvdp1.cpp b/src/devices/video/stvvdp1.cpp
index 8209fd7213e..e09077c48a1 100644
--- a/src/devices/video/stvvdp1.cpp
+++ b/src/devices/video/stvvdp1.cpp
@@ -1044,6 +1044,8 @@ void saturn_state::drawpixel_generic(int x, int y, int patterndata, int offsetcn
m_vdp1.framebuffer_draw_lines[y][x] = stv_vdp1_apply_gouraud_shading( x, y, pix );
break;
default:
+ // TODO: mode 5: prohibited, mode 6: gouraud shading + half-luminance, mode 7: gouraud-shading + half-transparent
+ popmessage("VDP1 PMOD = %02x, contact MAMEdev",stv2_current_sprite.CMDPMOD & 0x7);
m_vdp1.framebuffer_draw_lines[y][x] = pix;
break;
}