comparison vdp.c @ 1076:fa6fe03f218a

Removed obsolete TOOD
author Michael Pavone <pavone@retrodev.com>
date Fri, 12 Aug 2016 09:39:39 -0700
parents 679137a0e78e
children 1a66d5165ea7
comparison
equal deleted inserted replaced
1075:4b8ab2d82aee 1076:fa6fe03f218a
1724 if (context->flags & FLAG_DOT_OFLOW) { 1724 if (context->flags & FLAG_DOT_OFLOW) {
1725 value |= 0x40; 1725 value |= 0x40;
1726 } 1726 }
1727 if (context->flags2 & FLAG2_SPRITE_COLLIDE) { 1727 if (context->flags2 & FLAG2_SPRITE_COLLIDE) {
1728 value |= 0x20; 1728 value |= 0x20;
1729 //TODO: Test when this is actually cleared
1730 context->flags2 &= ~FLAG2_SPRITE_COLLIDE; 1729 context->flags2 &= ~FLAG2_SPRITE_COLLIDE;
1731 } 1730 }
1732 if ((context->regs[REG_MODE_4] & BIT_INTERLACE) && context->framebuf == context->oddbuf) { 1731 if ((context->regs[REG_MODE_4] & BIT_INTERLACE) && context->framebuf == context->oddbuf) {
1733 value |= 0x10; 1732 value |= 0x10;
1734 } 1733 }