
Originally Posted by
Exophase
He also commented out a bunch of variables I use for debugging, and some ++'s in very noncritcal places, maybe thinking he was optimizing the emulator somehow. And more aggrivating, he arbitrarily changed my bracket style in a few places, for instance:
if(dispstat & 0x10)
irq_raised |= IRQ_HBLANK;
}
else
{
...
if(update_input())
return execute_cycles;
In 0.8, now
if(dispstat & 0x10)
irq_raised |= IRQ_HBLANK;
} else {
...
if (update_input()) {
return execute_cycles;
}
Bookmarks