mirror of https://github.com/stella-emu/stella.git
Fix switching between auto and manual ystart in GUI.
This commit is contained in:
parent
1a86c8c3be
commit
27956cff15
|
@ -734,7 +734,8 @@ void Console::updateYStart(uInt32 ystart)
|
||||||
redetectYStart();
|
redetectYStart();
|
||||||
myYStartAutodetected = true;
|
myYStartAutodetected = true;
|
||||||
ystart = myAutodetectedYstart;
|
ystart = myAutodetectedYstart;
|
||||||
}
|
} else
|
||||||
|
myYStartAutodetected = false;
|
||||||
|
|
||||||
if (ystart != myTIA->ystart()) myTIA->setYStart(ystart);
|
if (ystart != myTIA->ystart()) myTIA->setYStart(ystart);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue