line draw deferment implemented

git-svn-id: file:///home/notaz/opt/svn/PicoDrive@508 be3aeb3a-fb24-0410-a615-afba39da0efa
This commit is contained in:
notaz 2008-07-01 13:42:12 +00:00
parent 1a65e3b161
commit b6d7ac7090
8 changed files with 120 additions and 99 deletions

View file

@ -424,6 +424,7 @@ static int PicoFrameSimple(void)
if (!(PicoOpt&POPT_ALT_RENDERER))
{
// Draw the screen
#if 0
#if CAN_HANDLE_240_LINES
if (pv->reg[1]&8) {
for (y=0;y<240;y++) PicoLine(y);
@ -432,6 +433,7 @@ static int PicoFrameSimple(void)
}
#else
for (y=0;y<224;y++) PicoLine(y);
#endif
#endif
}
else PicoFrameFull();