summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/video/lasso.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/video/lasso.c')
-rw-r--r--src/mame/video/lasso.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mame/video/lasso.c b/src/mame/video/lasso.c
index 7cfd38e901d..17ab31564c0 100644
--- a/src/mame/video/lasso.c
+++ b/src/mame/video/lasso.c
@@ -60,7 +60,7 @@ rgb_t lasso_state::get_color( int data )
bit1 = (data >> 7) & 0x01;
b = 0x4f * bit0 + 0xa8 * bit1;
- return MAKE_RGB(r, g, b);
+ return rgb_t(r, g, b);
}