diff options
Diffstat (limited to 'scripts/src')
-rw-r--r-- | scripts/src/machine.lua | 12 | ||||
-rw-r--r-- | scripts/src/video.lua | 2 |
2 files changed, 3 insertions, 11 deletions
diff --git a/scripts/src/machine.lua b/scripts/src/machine.lua index 589bf746219..72bde3ab5ce 100644 --- a/scripts/src/machine.lua +++ b/scripts/src/machine.lua @@ -2032,17 +2032,6 @@ end --------------------------------------------------- -- ---@src/devices/machine/saturn.h,MACHINES["SATURN"] = true ---------------------------------------------------- - -if (MACHINES["SATURN"]~=null) then - files { - MAME_DIR .. "src/devices/machine/saturn.cpp", - } -end - ---------------------------------------------------- --- --@src/devices/machine/serflash.h,MACHINES["SERFLASH"] = true --------------------------------------------------- @@ -2085,6 +2074,7 @@ end if (MACHINES["STVCD"]~=null) then files { MAME_DIR .. "src/devices/machine/stvcd.cpp", + MAME_DIR .. "src/devices/machine/stvcd.h", } end diff --git a/scripts/src/video.lua b/scripts/src/video.lua index 984bac6a950..337dd9d363c 100644 --- a/scripts/src/video.lua +++ b/scripts/src/video.lua @@ -666,7 +666,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 |