summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/video/stvvdp1.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/video/stvvdp1.cpp')
-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;
}