diff options
author | 2016-08-01 08:01:34 -0400 | |
---|---|---|
committer | 2016-08-01 08:01:34 -0400 | |
commit | ee302246c9e6fb48966df290387c9c471c1cc0d7 (patch) | |
tree | 15b68e432f4bcef62b812e2d9513c39df4f4b9aa /scripts | |
parent | 15e7be7ac8e4127e9fc0f9b5c248f4a73ba85703 (diff) |
Changes rom_entry from a struct to a class, storing its strings as std::string and separated the declaration into a new header.
This should really be followed up by further changes to eliminate the usage of the weird accessor macros in favor of conventional C++
accessors
Diffstat (limited to 'scripts')
-rw-r--r-- | scripts/src/emu.lua | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/scripts/src/emu.lua b/scripts/src/emu.lua index 1f96f3b4e22..2302811a058 100644 --- a/scripts/src/emu.lua +++ b/scripts/src/emu.lua @@ -149,6 +149,7 @@ files { MAME_DIR .. "src/emu/rendutil.h", MAME_DIR .. "src/emu/romload.cpp", MAME_DIR .. "src/emu/romload.h", + MAME_DIR .. "src/emu/romentry.h", MAME_DIR .. "src/emu/save.cpp", MAME_DIR .. "src/emu/save.h", MAME_DIR .. "src/emu/schedule.cpp", |