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:
Lord-Nightmare 2020-06-29 01:11:48 -04:00
parent 3d7bf5a176
commit 1b46ed9db8
2 changed files with 10 additions and 10 deletions

View File

@ -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);

View File

@ -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);