bsnes/higan/sfc/ppu-fast/line.cpp

7 lines
124 B
C++

auto PPU::Line::render() -> void {
for(uint x : range(512)) {
outputLo[x] = 0x7ffff;
outputHi[x] = 0x7ffff;
}
}