diff options
author | 2009-03-02 10:59:37 +0000 | |
---|---|---|
committer | 2009-03-02 10:59:37 +0000 | |
commit | 1dcd75d039272b7aff43a42f5fee6d9a8d822fe9 (patch) | |
tree | 78e1c567dfa6e032141d26f41f7a6526713ad26d /src/emu/machine/x2212.h | |
parent | 4ad8ec54f87813301e92291447feb34893c8b417 (diff) |
Removed device types from device queries that use tags, under the
assumption that all device tags are unique. Specifically, the
following no longer need to provide a device type:
AM_DEVREAD/WRITE
DEVCB_DEVICE_HANDLER
devtag_get_device
devtag_reset
device_list_find_by_tag
as well as several device interfaces that referenced other devices.
Also fixed assertion due to overflow in the recent sound fix.
Diffstat (limited to 'src/emu/machine/x2212.h')
-rw-r--r-- | src/emu/machine/x2212.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/emu/machine/x2212.h b/src/emu/machine/x2212.h index bea4b32e8c5..31d47f86d97 100644 --- a/src/emu/machine/x2212.h +++ b/src/emu/machine/x2212.h @@ -21,7 +21,7 @@ DEVICE_GET_INFO(x2212); MDRV_DEVICE_ADD(_tag, X2212, 0) #define MDRV_X2212_REMOVE(_tag) \ - MDRV_DEVICE_REMOVE(_tag, X2212) + MDRV_DEVICE_REMOVE(_tag) extern void x2212_write( const device_config *device, int offset, int data ); |