summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/mephisto_brikett.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/mephisto_brikett.cpp')
-rw-r--r--src/mame/drivers/mephisto_brikett.cpp5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/mame/drivers/mephisto_brikett.cpp b/src/mame/drivers/mephisto_brikett.cpp
index dd76de605da..862d6dd3be8 100644
--- a/src/mame/drivers/mephisto_brikett.cpp
+++ b/src/mame/drivers/mephisto_brikett.cpp
@@ -68,6 +68,7 @@ is completely different, based on a 68000.
// internal artwork
#include "mephisto_1.lh" // clickable
+#include "mephisto_esb2.lh" // clickable
#include "mephisto_3.lh" // clickable
@@ -461,7 +462,7 @@ void brikett_state::mephisto2e(machine_config &config)
m_board->set_delay(attotime::from_msec(250));
m_display->set_size(4+8, 8);
- config.set_default_layout(layout_mephisto_3);
+ config.set_default_layout(layout_mephisto_esb2);
}
void brikett_state::mephisto3(machine_config &config)
@@ -472,6 +473,8 @@ void brikett_state::mephisto3(machine_config &config)
m_maincpu->set_clock(6.144_MHz_XTAL);
m_maincpu->set_addrmap(AS_PROGRAM, &brikett_state::mephisto3_map);
m_maincpu->q_cb().set(FUNC(brikett_state::q_w));
+
+ config.set_default_layout(layout_mephisto_3);
}