From 6f4c1f6e5b2525ac8b700b3a0754f5e99c4223e1 Mon Sep 17 00:00:00 2001 From: Vas Crabb Date: Fri, 1 Nov 2019 00:47:41 +1100 Subject: Spring cleaning: * Changed emu_fatalerror to use util::string_format semantics * Fixed some incorrectly marked up stuff in build scripts * Make internal layout compression type a scoped enum (only zlib is supported still, but at least the values aren't magic numbers now) * Fixed memory leaks in Xbox USB * There can only be one "perfect quantum" device - enforce that only the root machine can set it, as allowing subdevices to will cause weird issues with slot cards overiding it * Allow multiple devices to set maximum quantum and use the most restrictive one (it's maximum quantum, it would be minimum interleave) * Got rid of device_slot_card_interface as it wasn't providing value * Added a helper template to reduce certain kinds of boilerplate in slots/buses * Cleaned up some particularly bad slot code (plenty more of that to do), and made some slots more idiomatic --- src/mame/drivers/sshangha.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/mame/drivers/sshangha.cpp') diff --git a/src/mame/drivers/sshangha.cpp b/src/mame/drivers/sshangha.cpp index 673de4f8907..6a820da2c52 100644 --- a/src/mame/drivers/sshangha.cpp +++ b/src/mame/drivers/sshangha.cpp @@ -421,7 +421,7 @@ void sshangha_state::sshangha(machine_config &config) m_audiocpu->set_addrmap(AS_PROGRAM, &sshangha_state::sound_map); - config.m_minimum_quantum = attotime::from_hz(6000); + config.set_maximum_quantum(attotime::from_hz(6000)); screen_device& screen(SCREEN(config, "screen", SCREEN_TYPE_RASTER)); screen.set_refresh_hz(60); -- cgit v1.2.3