diff options
author | 2016-05-14 16:50:14 +1000 | |
---|---|---|
committer | 2016-05-14 16:52:35 +1000 | |
commit | 689c19720ae7854ec50024972ae8ab1232837d15 (patch) | |
tree | 31c8da6bbb52cb57b2ec88a21e439da097f432d8 /src/emu/video | |
parent | 1055499a5b7a9fabcd1572c519260a76637be476 (diff) |
Hopefully fix PPC targets
Diffstat (limited to 'src/emu/video')
-rw-r--r-- | src/emu/video/rgbvmx.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/emu/video/rgbvmx.h b/src/emu/video/rgbvmx.h index f5829c17c56..95a7d45531c 100644 --- a/src/emu/video/rgbvmx.h +++ b/src/emu/video/rgbvmx.h @@ -28,11 +28,11 @@ protected: typedef __vector unsigned int VECU32; public: - inline rgbaint_t(): VECS8(0), VECU8(0), VECS16(0), VECU16(0), VECS32(0), VECU32(0) { } + inline rgbaint_t() { set(0, 0, 0, 0); } 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): VECS8(0), VECU8(0), VECS16(0), VECU16(0), VECS32(0), VECU32(0) { m_value = rgba; } + inline rgbaint_t(VECS32 rgba) m_value(rgba) { } inline void set(rgbaint_t& other) { m_value = other.m_value; } |