summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/phc25.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/phc25.cpp')
-rw-r--r--src/mame/drivers/phc25.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mame/drivers/phc25.cpp b/src/mame/drivers/phc25.cpp
index 2c16d269c36..a9a5955f927 100644
--- a/src/mame/drivers/phc25.cpp
+++ b/src/mame/drivers/phc25.cpp
@@ -350,7 +350,7 @@ void phc25_state::pal(machine_config &config)
m_vdg->set_screen("screen");
m_vdg->fsync_wr_callback().set(FUNC(phc25_state::irq_w));
m_vdg->input_callback().set(FUNC(phc25_state::video_ram_r));
- m_vdg->set_get_char_rom(mc6847_friend_device::get_char_rom_delegate(FUNC(phc25_state::pal_char_rom_r), this));
+ m_vdg->set_get_char_rom(FUNC(phc25_state::pal_char_rom_r));
m_vdg->set_get_fixed_mode(mc6847_pal_device::MODE_GM2 | mc6847_pal_device::MODE_GM1 | mc6847_pal_device::MODE_INTEXT);
// other lines not connected
}
@@ -365,8 +365,8 @@ void phc25_state::ntsc(machine_config &config)
m_vdg->set_screen("screen");
m_vdg->fsync_wr_callback().set(FUNC(phc25_state::irq_w));
m_vdg->input_callback().set(FUNC(phc25_state::video_ram_r));
- m_vdg->set_get_char_rom(FUNC(phc25_state::pal_char_rom_r));
- m_vdg->set_get_fixed_mode(mc6847_pal_device::MODE_GM2 | mc6847_pal_device::MODE_GM1 | mc6847_pal_device::MODE_INTEXT);
+ m_vdg->set_get_char_rom(FUNC(phc25_state::ntsc_char_rom_r));
+ m_vdg->set_get_fixed_mode(mc6847_ntsc_device::MODE_GM2 | mc6847_ntsc_device::MODE_GM1 | mc6847_ntsc_device::MODE_INTEXT);
// other lines not connected
}