get rid of port_config.h

This commit is contained in:
notaz 2013-07-28 03:05:10 +03:00
parent 5609d343e3
commit 9c9cda8c39
21 changed files with 73 additions and 288 deletions

View file

@ -1505,18 +1505,14 @@ void PicoDrawSync(int to, int blank_last_line)
for (line = DrawScanline; line < to; line++)
{
#if !CAN_HANDLE_240_LINES
if (line >= 224) break;
#endif
PicoLine(line, offs, sh, bgc);
}
#if !CAN_HANDLE_240_LINES
if (line >= 224) {
DrawScanline = 240;
return;
}
#endif
// last line
if (line <= to)