mirror of https://github.com/stella-emu/stella.git
parent
cf39f5afdf
commit
cb6b9cff32
|
@ -761,6 +761,9 @@ void FrameBuffer::changeOverscan(int direction)
|
|||
// issue a complete framebuffer re-initialization
|
||||
myOSystem.createFrameBuffer();
|
||||
}
|
||||
ostringstream msg;
|
||||
msg << "Overscan at " << overscan << "%";
|
||||
showMessage(msg.str());
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -184,14 +184,9 @@ void TIASurface::setNTSC(NTSCFilter::Preset preset, bool show)
|
|||
void TIASurface::setScanlineIntensity(int amount)
|
||||
{
|
||||
ostringstream buf;
|
||||
if(ntscEnabled())
|
||||
{
|
||||
uInt32 intensity = enableScanlines(amount);
|
||||
buf << "Scanline intensity at " << intensity << "%";
|
||||
myOSystem.settings().setValue("tv.scanlines", intensity);
|
||||
}
|
||||
else
|
||||
buf << "Scanlines only available in TV filtering mode";
|
||||
uInt32 intensity = enableScanlines(amount);
|
||||
buf << "Scanline intensity at " << intensity << "%";
|
||||
myOSystem.settings().setValue("tv.scanlines", intensity);
|
||||
|
||||
myFB.showMessage(buf.str());
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue