diff options
Diffstat (limited to 'docs/release/scripts/src/video.lua')
-rw-r--r-- | docs/release/scripts/src/video.lua | 30 |
1 files changed, 16 insertions, 14 deletions
diff --git a/docs/release/scripts/src/video.lua b/docs/release/scripts/src/video.lua index 984bac6a950..2220e65fff9 100644 --- a/docs/release/scripts/src/video.lua +++ b/docs/release/scripts/src/video.lua @@ -203,8 +203,8 @@ if (VIDEOS["EPIC12"]~=null) then MAME_DIR .. "src/devices/video/epic12_blit6.cpp", MAME_DIR .. "src/devices/video/epic12_blit7.cpp", MAME_DIR .. "src/devices/video/epic12_blit8.cpp", - MAME_DIR .. "src/devices/video/epic12in.inc", - MAME_DIR .. "src/devices/video/epic12pixel.inc", + MAME_DIR .. "src/devices/video/epic12in.hxx", + MAME_DIR .. "src/devices/video/epic12pixel.hxx", } end @@ -246,18 +246,6 @@ end -------------------------------------------------- -- ---@src/devices/video/h63484.h,VIDEOS["H63484"] = true --------------------------------------------------- - -if (VIDEOS["H63484"]~=null) then - files { - MAME_DIR .. "src/devices/video/h63484.cpp", - MAME_DIR .. "src/devices/video/h63484.h", - } -end - --------------------------------------------------- --- --@src/devices/video/hd44102.h,VIDEOS["HD44102"] = true -------------------------------------------------- @@ -666,7 +654,9 @@ end if (VIDEOS["STVVDP"]~=null) then files { MAME_DIR .. "src/devices/video/stvvdp1.cpp", + MAME_DIR .. "src/devices/video/stvvdp1.h", MAME_DIR .. "src/devices/video/stvvdp2.cpp", + MAME_DIR .. "src/devices/video/stvvdp2.h", } end @@ -862,3 +852,15 @@ if (VIDEOS["JANGOU_BLITTER"]~=null) then MAME_DIR .. "src/devices/video/jangou_blitter.h", } end + +-------------------------------------------------- +-- +--@src/devices/video/gb_lcd.h,VIDEOS["GB_LCD"] = true +-------------------------------------------------- + +if (VIDEOS["GB_LCD"]~=null) then + files { + MAME_DIR .. "src/devices/video/gb_lcd.cpp", + MAME_DIR .. "src/devices/video/gb_lcd.h", + } +end |