summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/machine/eeprompar.h
diff options
context:
space:
mode:
author Nathan Woods <npwoods@mess.org>2017-05-14 08:59:44 -0400
committer Vas Crabb <cuavas@users.noreply.github.com>2017-05-14 23:02:40 +1000
commit48af971c2e04296389efcdc90f8a914fd1fd403f (patch)
tree1827180e9b28030c9093551b7ec788c188b65d23 /src/devices/machine/eeprompar.h
parentb39c0759e736fa704551dcc9543f1234aec3fd6b (diff)
Fixed various issues that failed when compiling Vas' changes on MSVC
Most of these appear to be typos that should be benign but due to MSVC bugs, are not benign The dac.h 'bits' thing is just stupid
Diffstat (limited to 'src/devices/machine/eeprompar.h')
-rw-r--r--src/devices/machine/eeprompar.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/devices/machine/eeprompar.h b/src/devices/machine/eeprompar.h
index a440780a009..62a4b539e8b 100644
--- a/src/devices/machine/eeprompar.h
+++ b/src/devices/machine/eeprompar.h
@@ -88,7 +88,7 @@ class eeprom_parallel_##_lowercase##_device : public eeprom_parallel_##_baseclas
public: \
eeprom_parallel_##_lowercase##_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock); \
}; \
-DECLARE_DEVICE_TYPE(EEPROM_PARALLEL_##_uppercase, eeprom_parallel_##_lowercase_device)
+DECLARE_DEVICE_TYPE(EEPROM_PARALLEL_##_uppercase, eeprom_parallel_##_lowercase##_device)
// standard 28XX class of 8-bit EEPROMs
DECLARE_PARALLEL_EEPROM_DEVICE(28xx, 2804, 2804)