mirror of https://github.com/stella-emu/stella.git
- square off last image line before drawing OSD text
This commit is contained in:
parent
716c14ecfc
commit
0c7538e3b6
|
@ -1355,6 +1355,20 @@ void MovieCart::runStateMachine()
|
|||
case 2:
|
||||
if(!myA7)
|
||||
{
|
||||
if(myOdd)
|
||||
{
|
||||
if(myDrawTimeCode)
|
||||
{
|
||||
if (myLines == (TIMECODE_HEIGHT - 0))
|
||||
myStream.blankPartialLines(true);
|
||||
}
|
||||
if(myDrawLevelBars)
|
||||
{
|
||||
if(myLines == 22)
|
||||
myStream.blankPartialLines(true);
|
||||
}
|
||||
}
|
||||
|
||||
if(myLines >= 1)
|
||||
{
|
||||
fill_addr_left_line(1);
|
||||
|
|
Loading…
Reference in New Issue