diff options
author | 2016-08-02 07:01:29 -0400 | |
---|---|---|
committer | 2016-08-02 17:40:49 -0400 | |
commit | f9db568146503c253230295ace2deba8433f6754 (patch) | |
tree | 57a1b43f5c967e17f0461f9d5be9abf88c2e27ae /scripts/src/emu.lua | |
parent | 159b73a708fb67ca2d39e1d4f8cee9987fdc3f8b (diff) |
Redo of split of src/emu/softlist.[cpp|h]
This is a redo of the split first submitted in #137, with the following differences:
* The newly refactored rom_entry data structure is used
* I've kept the refactored softlist code in src/emu, in order to defer the mechanical process of moving it
* I've kept includes of softlist[_dev].h out of diimage.h, so that changes to either do not trigger an emu.h recompilation
* Obviously, this goes against the latest master
Diffstat (limited to 'scripts/src/emu.lua')
-rw-r--r-- | scripts/src/emu.lua | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/scripts/src/emu.lua b/scripts/src/emu.lua index 2302811a058..78b61d03d54 100644 --- a/scripts/src/emu.lua +++ b/scripts/src/emu.lua @@ -158,6 +158,8 @@ files { MAME_DIR .. "src/emu/screen.h", MAME_DIR .. "src/emu/softlist.cpp", MAME_DIR .. "src/emu/softlist.h", + MAME_DIR .. "src/emu/softlist_dev.cpp", + MAME_DIR .. "src/emu/softlist_dev.h", MAME_DIR .. "src/emu/sound.cpp", MAME_DIR .. "src/emu/sound.h", MAME_DIR .. "src/emu/speaker.cpp", |