mirror of https://github.com/stella-emu/stella.git
minor zoom fix
This commit is contained in:
parent
21879be8ab
commit
e76b91720d
|
@ -287,7 +287,7 @@ FBInitStatus FrameBuffer::createDisplay(string_view title, BufferType type,
|
|||
const double currentTIAZoom =
|
||||
static_cast<double>(myOSystem.settings().getFloat("tia.zoom"));
|
||||
myOSystem.settings().setValue("tia.zoom",
|
||||
BSPF::clampw(currentTIAZoom, supportedTIAMinZoom(), supportedTIAMaxZoom()));
|
||||
BSPF::clamp(currentTIAZoom, supportedTIAMinZoom(), supportedTIAMaxZoom()));
|
||||
}
|
||||
|
||||
#ifdef GUI_SUPPORT // TODO: put message stuff in its own class
|
||||
|
|
Loading…
Reference in New Issue