diff options
author | 2022-01-07 12:07:58 -0800 | |
---|---|---|
committer | 2022-01-07 15:07:58 -0500 | |
commit | c21bea828d7253fc2b0bf671937a09f123737b9a (patch) | |
tree | 54c79ba393dbf4fe0b0be13a512628364cd7e3f9 /scripts/src/machine.lua | |
parent | fd736212854673efa8e2bcf2e1b2d3420bcacdb5 (diff) |
Adding bitmap_printer_device and convert epson_lx810 to use it. (#8863)
Diffstat (limited to 'scripts/src/machine.lua')
-rw-r--r-- | scripts/src/machine.lua | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/scripts/src/machine.lua b/scripts/src/machine.lua index 4bb5410edc9..1a4c85a7cc8 100644 --- a/scripts/src/machine.lua +++ b/scripts/src/machine.lua @@ -4911,3 +4911,14 @@ if (MACHINES["GLUKRS"]~=null) then MAME_DIR .. "src/devices/machine/glukrs.h", } end + +--------------------------------------------------- +-- +--@src/devices/machine/bitmap_printer.h,MACHINES["BITMAP_PRINTER"] = true +--------------------------------------------------- +if (MACHINES["BITMAP_PRINTER"]~=null) then + files { + MAME_DIR .. "src/devices/machine/bitmap_printer.cpp", + MAME_DIR .. "src/devices/machine/bitmap_printer.h", + } +end
\ No newline at end of file |