mirror of
https://github.com/holub/mame
synced 2025-04-24 01:11:11 +03:00
make the wpc_dcs.cpp and wpc_s.cpp class definition style more consistent with the other Williams pinball drivers. [Lord Nightmare]
This commit is contained in:
parent
3d7bf5a176
commit
1b46ed9db8
@ -25,7 +25,7 @@ public:
|
||||
, nvram(*this, "nvram")
|
||||
, lamp(*this, "lamp")
|
||||
, out(*this, "out")
|
||||
, swarray(*this, "SW.%u", 0)
|
||||
, swarray(*this, "SW.%u", 0U)
|
||||
{ }
|
||||
|
||||
void wpc_dcs(machine_config &config);
|
||||
|
@ -15,15 +15,15 @@ class wpc_s_state : public driver_device
|
||||
{
|
||||
public:
|
||||
wpc_s_state(const machine_config &mconfig, device_type type, const char *tag)
|
||||
: driver_device(mconfig, type, tag),
|
||||
maincpu(*this, "maincpu"),
|
||||
dcs(*this, "dcs"),
|
||||
rombank(*this, "rombank"),
|
||||
mainram(*this, "mainram"),
|
||||
nvram(*this, "nvram"),
|
||||
pic(*this, "pic"),
|
||||
lamp(*this, "lamp"),
|
||||
out(*this, "out")
|
||||
: driver_device(mconfig, type, tag)
|
||||
, maincpu(*this, "maincpu")
|
||||
, dcs(*this, "dcs")
|
||||
, rombank(*this, "rombank")
|
||||
, mainram(*this, "mainram")
|
||||
, nvram(*this, "nvram")
|
||||
, pic(*this, "pic")
|
||||
, lamp(*this, "lamp")
|
||||
, out(*this, "out")
|
||||
{ }
|
||||
|
||||
void wpc_s(machine_config &config);
|
||||
|
Loading…
Reference in New Issue
Block a user