summaryrefslogtreecommitdiffstatshomepage
path: root/src/emu/video/vector.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/emu/video/vector.h')
-rw-r--r--src/emu/video/vector.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/emu/video/vector.h b/src/emu/video/vector.h
index cb4b2b04d54..d4a22eee177 100644
--- a/src/emu/video/vector.h
+++ b/src/emu/video/vector.h
@@ -2,13 +2,13 @@
#define __VECTOR__
#define VECTOR_COLOR111(c) \
- MAKE_RGB(pal1bit((c) >> 2), pal1bit((c) >> 1), pal1bit((c) >> 0))
+ rgb_t(pal1bit((c) >> 2), pal1bit((c) >> 1), pal1bit((c) >> 0))
#define VECTOR_COLOR222(c) \
- MAKE_RGB(pal2bit((c) >> 4), pal2bit((c) >> 2), pal2bit((c) >> 0))
+ rgb_t(pal2bit((c) >> 4), pal2bit((c) >> 2), pal2bit((c) >> 0))
#define VECTOR_COLOR444(c) \
- MAKE_RGB(pal4bit((c) >> 8), pal4bit((c) >> 4), pal4bit((c) >> 0))
+ rgb_t(pal4bit((c) >> 8), pal4bit((c) >> 4), pal4bit((c) >> 0))
/* The vertices are buffered here */