summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/video/buggychl.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/video/buggychl.cpp')
-rw-r--r--src/mame/video/buggychl.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mame/video/buggychl.cpp b/src/mame/video/buggychl.cpp
index db33cbff098..26bf22f4ff4 100644
--- a/src/mame/video/buggychl.cpp
+++ b/src/mame/video/buggychl.cpp
@@ -4,11 +4,11 @@
#include "includes/buggychl.h"
-PALETTE_INIT_MEMBER(buggychl_state, buggychl)
+void buggychl_state::buggychl_palette(palette_device &palette) const
{
- /* arbitrary blue shading for the sky, estimation */
+ // arbitrary blue shading for the sky, estimation
for (int i = 0; i < 128; i++)
- palette.set_pen_color(i + 128, rgb_t(0, 240-i, 255));
+ palette.set_pen_color(i + 128, rgb_t(0, 240 - i, 255));
}
void buggychl_state::video_start()