diff options
author | 2019-07-12 09:28:34 +1000 | |
---|---|---|
committer | 2019-07-12 09:28:34 +1000 | |
commit | 4e17bb120c26c4ec3ffc8407438f6d09b1da5e86 (patch) | |
tree | 20583b3ca381731b76940e28334bcfdab9719188 /src/mame/drivers/mmodular.cpp | |
parent | df99ce2ec0e82020a6fee89f4ffaf7f1468fec31 (diff) | |
parent | 9214a78d705f3b83c3ea45534cf1d8355c1cb9c5 (diff) |
Merge remote-tracking branch 'upstream/master'
Diffstat (limited to 'src/mame/drivers/mmodular.cpp')
-rw-r--r-- | src/mame/drivers/mmodular.cpp | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/src/mame/drivers/mmodular.cpp b/src/mame/drivers/mmodular.cpp index 39cbb14cb4a..8a06d813482 100644 --- a/src/mame/drivers/mmodular.cpp +++ b/src/mame/drivers/mmodular.cpp @@ -41,8 +41,11 @@ #include "screen.h" #include "speaker.h" +// internal artwork +#include "mephisto_alm16.lh" +#include "mephisto_alm32.lh" #include "mephisto_berlin.lh" -#include "mmodular.lh" +#include "mephisto_gen32.lh" class mmodular_state : public driver_device @@ -278,7 +281,7 @@ void mmodular_state::alm16(machine_config &config) MEPHISTO_SENSORS_BOARD(config, "board"); MEPHISTO_DISPLAY_MODUL(config, "display"); - config.set_default_layout(layout_mmodular); + config.set_default_layout(layout_mephisto_alm16); } @@ -299,7 +302,7 @@ void mmodular_state::alm32(machine_config &config) MEPHISTO_SENSORS_BOARD(config, "board"); MEPHISTO_DISPLAY_MODUL(config, "display"); - config.set_default_layout(layout_mmodular); + config.set_default_layout(layout_mephisto_alm32); } @@ -320,7 +323,7 @@ void mmodular_state::gen32(machine_config &config) MEPHISTO_SENSORS_BOARD(config, "board"); MEPHISTO_DISPLAY_MODUL(config, "display"); - config.set_default_layout(layout_mmodular); + config.set_default_layout(layout_mephisto_gen32); } |