summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/video/model2rd.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/video/model2rd.hxx')
-rw-r--r--src/mame/video/model2rd.hxx3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/mame/video/model2rd.hxx b/src/mame/video/model2rd.hxx
index f290889f218..a1e1b68fc49 100644
--- a/src/mame/video/model2rd.hxx
+++ b/src/mame/video/model2rd.hxx
@@ -186,7 +186,8 @@ void MODEL2_FUNC_NAME(int32_t scanline, const extent_t& extent, const m2_poly_ex
// Virtua Striker sets up a luma of 0x40 for national flags on bleachers, fix here.
luma = std::min((int)luma,0x3f);
// (Again) Virtua Striker seem to lookup colortable with a reversed endianness (stadium ads)
- luma^= 1;
+ // TODO: it breaks Mexican flag colors tho ...
+// luma^= 1;
/* we have the 6 bits of luma information along with 5 bits per color component */
/* now build and index into the master color lookup table and extract the raw RGB values */