pc/ct486.cpp: remove unnecessary palette_device

This commit is contained in:
angelosa 2024-08-28 18:05:46 +02:00
parent 1419b2f964
commit c7819060c5
2 changed files with 2 additions and 5 deletions

View File

@ -1,3 +1,3 @@
# **src/mame/pc** # # **src/mame/pc**
Generic folder with MAME drivers for IBM PC, PC compatibles, or PC-based arcade hardware. Generic folder with MAME drivers for IBM PC, PC compatibles, or PC-based arcade hardware.

View File

@ -182,9 +182,6 @@ void ct486_state::ct486(machine_config &config)
SPEAKER(config, "mono").front_center(); SPEAKER(config, "mono").front_center();
SPEAKER_SOUND(config, m_speaker).add_route(ALL_OUTPUTS, "mono", 0.50); SPEAKER_SOUND(config, m_speaker).add_route(ALL_OUTPUTS, "mono", 0.50);
// video hardware
PALETTE(config, "palette").set_entries(256); // todo: really needed?
/* software lists */ /* software lists */
SOFTWARE_LIST(config, "pc_disk_list").set_original("ibm5150"); SOFTWARE_LIST(config, "pc_disk_list").set_original("ibm5150");
SOFTWARE_LIST(config, "at_disk_list").set_original("ibm5170"); SOFTWARE_LIST(config, "at_disk_list").set_original("ibm5170");