Previous 199869 Revisions Next

r19992 Tuesday 1st January, 2013 at 17:18:39 UTC by Oliver Stöneberg
handle binding_type_exception in running_machine::run() - gives proper error with apollo.c before assert (nw)
[src/emu]machine.c

trunk/src/emu/machine.c
r19991r19992
428428      mame_printf_error("Out of memory!\n");
429429      error = MAMERR_FATALERROR;
430430   }
431   catch (binding_type_exception &btex)
432   {
433      mame_printf_error("Error performing a late bind of type %s to %s\n", btex.m_actual_type.name(), btex.m_target_type.name());
434      error = MAMERR_FATALERROR;
435   }
431436
432437   // make sure our phase is set properly before cleaning up,
433438   // in case we got here via exception

Previous 199869 Revisions Next


© 1997-2024 The MAME Team