summaryrefslogtreecommitdiffstatshomepage
path: root/src/emu/driver.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/emu/driver.h')
-rw-r--r--src/emu/driver.h11
1 files changed, 6 insertions, 5 deletions
diff --git a/src/emu/driver.h b/src/emu/driver.h
index 7db71669c22..cf4a820c8e1 100644
--- a/src/emu/driver.h
+++ b/src/emu/driver.h
@@ -119,16 +119,17 @@
/* ----- flags for video_attributes ----- */
-/* is the video hardware raser or vector base? */
-#define VIDEO_TYPE_RASTER 0x0000
-#define VIDEO_TYPE_VECTOR 0x0001
+/* is the video hardware raster or vector based? */
+#define VIDEO_TYPE_NONE 0x0000
+#define VIDEO_TYPE_RASTER 0x0001
+#define VIDEO_TYPE_VECTOR 0x0002
/* should VIDEO_UPDATE by called at the start of VBLANK or at the end? */
#define VIDEO_UPDATE_BEFORE_VBLANK 0x0000
-#define VIDEO_UPDATE_AFTER_VBLANK 0x0002
+#define VIDEO_UPDATE_AFTER_VBLANK 0x0004
/* indicates VIDEO_UPDATE will add container bits its */
-#define VIDEO_SELF_RENDER 0x0004
+#define VIDEO_SELF_RENDER 0x0008
/* automatically extend the palette creating a darker copy for shadows */
#define VIDEO_HAS_SHADOWS 0x0010