summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/videosaa.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/videosaa.cpp')
-rw-r--r--src/mame/drivers/videosaa.cpp7
1 files changed, 3 insertions, 4 deletions
diff --git a/src/mame/drivers/videosaa.cpp b/src/mame/drivers/videosaa.cpp
index 8f975ff0cd1..829e652026a 100644
--- a/src/mame/drivers/videosaa.cpp
+++ b/src/mame/drivers/videosaa.cpp
@@ -30,8 +30,8 @@ class videosaa_state : public driver_device
{
public:
videosaa_state(const machine_config &mconfig, device_type type, const char *tag)
- : driver_device(mconfig, type, tag),
- m_maincpu(*this, "maincpu")
+ : driver_device(mconfig, type, tag)
+ , m_maincpu(*this, "maincpu")
{ }
void videosaa(machine_config &config);
@@ -100,8 +100,7 @@ void videosaa_state::videosaa(machine_config &config)
GFXDECODE(config, "gfxdecode", "palette", gfx);
- palette_device& palette(PALETTE(config, "palette", 8));
- palette.set_init("palette", FUNC(palette_device::palette_init_3bit_rgb));
+ PALETTE(config, "palette", palette_device::RGB_3BIT);
/* sound hardware */
UPD7759(config, "upd");