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,6 +97,9 @@ bool FrameBuffer::initialize()
|
|||
|
||||
// The general font used in all UI elements
|
||||
// This is determined by the size of the framebuffer
|
||||
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
|
||||
|
|
Loading…
Reference in New Issue