summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/machine
diff options
context:
space:
mode:
author hap <happppp@users.noreply.github.com>2021-08-31 23:44:44 +0200
committer hap <happppp@users.noreply.github.com>2021-08-31 23:45:14 +0200
commitf99b3f756ee917caf7c68a18d12799fbdfcb2af4 (patch)
treea6c1d2930e7b2b8c35839cc9cc2d1e823d520b1a /src/mame/machine
parentf3b2d781dee579cf6e816cbefff3b15340a02073 (diff)
segac2: decouple driver class from md_base_state
Diffstat (limited to 'src/mame/machine')
-rw-r--r--src/mame/machine/megadriv.cpp14
1 files changed, 0 insertions, 14 deletions
diff --git a/src/mame/machine/megadriv.cpp b/src/mame/machine/megadriv.cpp
index b1f609a2d6f..320fd0677fb 100644
--- a/src/mame/machine/megadriv.cpp
+++ b/src/mame/machine/megadriv.cpp
@@ -1033,20 +1033,6 @@ void md_base_state::megadriv_init_common()
m_megadrive_io_write_data_port_ptr = write16sm_delegate(*this, FUNC(md_base_state::megadrive_io_write_data_port_3button));
}
-void md_base_state::init_megadriv_c2()
-{
- megadriv_init_common();
-
- m_vdp->set_use_cram(0); // C2 uses its own palette ram
- m_vdp->set_vdp_pal(false);
- m_vdp->set_framerate(60);
- m_vdp->set_total_scanlines(262);
-
- m_version_hi_nibble = 0x20; // JPN NTSC no-SCD
-}
-
-
-
void md_base_state::init_megadriv()
{
megadriv_init_common();