void Renderer::Clear()
{
if(displayMode & DISPLAY_PERS)
{
std::copy(persistentVideo.begin(), persistentVideo.end(), video.RowIterator({ 0, 0 }));
}
else
{
std::fill_n(video.data(), WINDOWW * YRES, 0); //<---- Change 0 to 0x0000ff to make the background blue
}
AdjustHdispLimit();
}
Oh neat, I was going to try to try my hand at reading the source but got afraid once I opened a random file and read setjmp & longjmp.
I'll give it a shot once I've compiled it.