Previous 199869 Revisions Next

r23540 Saturday 8th June, 2013 at 13:00:20 UTC by O. Galibert
duh (nw)
[src/emu]delegate.h devcb2.c
[src/mame/machine]naomig1.h

trunk/src/emu/devcb2.c
r23539r23540
232232   }
233233   catch (binding_type_exception &binderr)
234234   {
235      abort();
236235      throw emu_fatalerror("Error performing a late bind of type %s to %s\n", binderr.m_actual_type.name(), binderr.m_target_type.name());
237236   }
238237}
r23539r23540
450449   }
451450   catch (binding_type_exception &binderr)
452451   {
453      abort();
454452      throw emu_fatalerror("Error performing a late bind of type %s to %s\n", binderr.m_actual_type.name(), binderr.m_target_type.name());
455453   }
456454}
trunk/src/emu/delegate.h
r23539r23540
567567   {
568568      _FunctionClass *result = dynamic_cast<_FunctionClass *>(&object);
569569      if (result == NULL) {
570        abort();
571570         throw binding_type_exception(typeid(_FunctionClass), typeid(object));
572571      }
573572      return reinterpret_cast<delegate_generic_class *>(result);
trunk/src/mame/machine/naomig1.h
r23539r23540
6161private:
6262   UINT32 gdstar, gdlen, gddir, gden, gdst;
6363
64   const char *maincpu_tag;
6564   emu_timer *timer;
6665   devcb2_write8 irq_cb;
6766   dma_cb _dma_cb;

Previous 199869 Revisions Next


© 1997-2024 The MAME Team