diff options
author | 2017-05-22 14:31:40 +1000 | |
---|---|---|
committer | 2017-05-22 14:31:40 +1000 | |
commit | a6ee791664e78112cd59fddd23252c4077c5271e (patch) | |
tree | f5c3ac81e60b735a721da21085fff7e0df7c58c8 /src/devices/bus/wangpc/lic.cpp | |
parent | e63871ed51214148c8e3b103d594f2b33e0ea197 (diff) |
Goodbye MACHINE_CONFIG_FRAGMENT, it was nice knowing you.
(nw) This is a pretty minimal change. The point where the root device is added has been moved
from the MACHINE_CONFIG_START macro to the constructor of the machine configuration class (made
possible by giving drivers their own device types). This isn't the final change in this area.
The root device is still being handled specially in that its configuration comes from the game
driver structure. This needs to be harmonised with regular devices. But that's a job for
another day.
Diffstat (limited to 'src/devices/bus/wangpc/lic.cpp')
-rw-r--r-- | src/devices/bus/wangpc/lic.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/devices/bus/wangpc/lic.cpp b/src/devices/bus/wangpc/lic.cpp index ed1ad4dbc09..61d6ec53c2a 100644 --- a/src/devices/bus/wangpc/lic.cpp +++ b/src/devices/bus/wangpc/lic.cpp @@ -47,10 +47,10 @@ const tiny_rom_entry *wangpc_lic_device::device_rom_region() const //------------------------------------------------- -// MACHINE_CONFIG_FRAGMENT( wangpc_lic ) +// MACHINE_CONFIG_START( wangpc_lic ) //------------------------------------------------- -static MACHINE_CONFIG_FRAGMENT( wangpc_lic ) +static MACHINE_CONFIG_START( wangpc_lic ) MACHINE_CONFIG_END |