mirror of https://github.com/bsnes-emu/bsnes.git
7 lines
124 B
C++
7 lines
124 B
C++
|
auto PPU::Line::render() -> void {
|
||
|
for(uint x : range(512)) {
|
||
|
outputLo[x] = 0x7ffff;
|
||
|
outputHi[x] = 0x7ffff;
|
||
|
}
|
||
|
}
|