diff options
author | 2010-08-27 05:37:56 +0000 | |
---|---|---|
committer | 2010-08-27 05:37:56 +0000 | |
commit | 4cc59054e0f8c95d7429a4792802bd3f0be73aff (patch) | |
tree | f0726e9aeb7c94436079386d150b3eb0fb8525af /src/emu/machine/6821pia.c | |
parent | 04aa0a09eb1d89ce905fe7dd523d92b0ef8b0f0f (diff) |
Updated the INS 8154 RAM I/O device to no longer be legacy. [Harmony]
Non-whatsnew note: For MESS.
Diffstat (limited to 'src/emu/machine/6821pia.c')
-rw-r--r-- | src/emu/machine/6821pia.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/emu/machine/6821pia.c b/src/emu/machine/6821pia.c index 9daf6e88caa..d6026d20632 100644 --- a/src/emu/machine/6821pia.c +++ b/src/emu/machine/6821pia.c @@ -85,7 +85,9 @@ void pia6821_device_config::device_config_complete() // inherit a copy of the static data const pia6821_interface *intf = reinterpret_cast<const pia6821_interface *>(static_config()); if (intf != NULL) + { *static_cast<pia6821_interface *>(this) = *intf; + } // or initialize to defaults if none provided else |