summaryrefslogtreecommitdiffstatshomepage
path: root/src/emu/video/rgbvmx.h
diff options
context:
space:
mode:
author R. Belmont <rb6502@users.noreply.github.com>2012-04-29 22:36:17 +0000
committer R. Belmont <rb6502@users.noreply.github.com>2012-04-29 22:36:17 +0000
commita8d6362acb798e81dc4b09e23cb3f31e6820961b (patch)
treec7d2b91f1d6a721b64dcea1627434fe7fca78df4 /src/emu/video/rgbvmx.h
parent651da72fe8631da13703cb48ccb1bcdfa6af65d4 (diff)
Fix PowerPC OS X compile [R. Belmont]
Diffstat (limited to 'src/emu/video/rgbvmx.h')
-rw-r--r--src/emu/video/rgbvmx.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/emu/video/rgbvmx.h b/src/emu/video/rgbvmx.h
index 3d1898226d6..adbe10aba60 100644
--- a/src/emu/video/rgbvmx.h
+++ b/src/emu/video/rgbvmx.h
@@ -432,7 +432,9 @@ INLINE void rgbaint_bilinear_filter(rgbaint *color, rgb_t rgb00, rgb_t rgb01, rg
// altivec.h somehow redefines "bool" in a bad way on PowerPC Mac OS X. really.
#ifdef SDLMAME_MACOSX
-#include <stdbool.h>
+#undef vector
+#undef pixel
+#undef bool
#endif
#endif /* __RGBVMX__ */