Haze: Clamp Roz stuff to 24-bit, seems to fix the remaining issues with the Sega logos.

This commit is contained in:
Scott Stone 2010-10-15 00:19:24 +00:00
parent ff1db7eb48
commit e166247fda

View File

@ -5430,6 +5430,10 @@ WRITE16_HANDLER( segacd_trace_vector_base_address_w )
xbase += deltax;
ybase += deltay;
// clamp to 24-bits, seems to be required for all the intro effects to work
xbase &= 0xffffff;
ybase &= 0xffffff;
}