mirror of https://github.com/stella-emu/stella.git
larger fonts in all dialogs when using minimal UI
This commit is contained in:
parent
1042c4ff7f
commit
c3483d1553
|
@ -97,7 +97,10 @@ bool FrameBuffer::initialize()
|
||||||
|
|
||||||
// The general font used in all UI elements
|
// The general font used in all UI elements
|
||||||
// This is determined by the size of the framebuffer
|
// This is determined by the size of the framebuffer
|
||||||
myFont = make_unique<GUI::Font>(GUI::stellaMediumDesc);
|
if(myOSystem.settings().getBool("minimal_ui"))
|
||||||
|
myFont = make_unique<GUI::Font>(GUI::stellaLargeDesc);
|
||||||
|
else
|
||||||
|
myFont = make_unique<GUI::Font>(GUI::stellaMediumDesc);
|
||||||
|
|
||||||
// The info font used in all UI elements
|
// The info font used in all UI elements
|
||||||
// This is determined by the size of the framebuffer
|
// This is determined by the size of the framebuffer
|
||||||
|
|
Loading…
Reference in New Issue