diff options
author | 2016-05-16 12:35:04 +1000 | |
---|---|---|
committer | 2016-05-16 12:35:04 +1000 | |
commit | 1615aab5c092676325da096aa905f72b57d2f2a1 (patch) | |
tree | 172164dfcb2eab614daf53d7a859a54d9ca39a13 /src/emu/video/rgbvmx.h | |
parent | 3aedaf86969c5e3a0cd4e81f9555224ea7d5844d (diff) |
Fix stupid syntax error
Diffstat (limited to 'src/emu/video/rgbvmx.h')
-rw-r--r-- | src/emu/video/rgbvmx.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/emu/video/rgbvmx.h b/src/emu/video/rgbvmx.h index 95a7d45531c..0c9ca32d47e 100644 --- a/src/emu/video/rgbvmx.h +++ b/src/emu/video/rgbvmx.h @@ -32,7 +32,7 @@ public: inline rgbaint_t(UINT32 rgba) { set(rgba); } inline rgbaint_t(INT32 a, INT32 r, INT32 g, INT32 b) { set(a, r, g, b); } inline rgbaint_t(rgb_t& rgb) { set(rgb); } - inline rgbaint_t(VECS32 rgba) m_value(rgba) { } + inline rgbaint_t(VECS32 rgba) : m_value(rgba) { } inline void set(rgbaint_t& other) { m_value = other.m_value; } |