mirror of
https://github.com/RaySollium99/picodrive.git
synced 2025-09-05 15:27:46 -04:00
draw: fix mistake from 9c9cda8c3
This commit is contained in:
parent
6b5feebabc
commit
be7867d875
1 changed files with 0 additions and 6 deletions
|
@ -1505,15 +1505,9 @@ void PicoDrawSync(int to, int blank_last_line)
|
||||||
|
|
||||||
for (line = DrawScanline; line < to; line++)
|
for (line = DrawScanline; line < to; line++)
|
||||||
{
|
{
|
||||||
if (line >= 224) break;
|
|
||||||
PicoLine(line, offs, sh, bgc);
|
PicoLine(line, offs, sh, bgc);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (line >= 224) {
|
|
||||||
DrawScanline = 240;
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
// last line
|
// last line
|
||||||
if (line <= to)
|
if (line <= to)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue