Previous 199869 Revisions Next

r44491 Tuesday 26th January, 2016 at 07:31:27 UTC by Miodrag Milanović
Fix for SteamLink build to compile error free (nw)
[src/devices/bus/z88]z88.cpp

trunk/src/devices/bus/z88/z88.cpp
r253002r253003
158158void z88cart_slot_device::call_unload()
159159{
160160   if (m_cart)
161      memset(m_cart->get_cart_base(), 0xff, m_cart->get_cart_size());
161   {
162      auto cart_size = m_cart->get_cart_size();
163      if (cart_size>0)
164         memset(m_cart->get_cart_base(), 0xff, cart_size);
165   }
162166
163167   // open the flap
164168   m_out_flp_cb(ASSERT_LINE);


Previous 199869 Revisions Next


© 1997-2024 The MAME Team