From c3483d15530a787718afe55e147e49359a334e97 Mon Sep 17 00:00:00 2001 From: thrust26 Date: Tue, 23 Apr 2019 20:08:03 +0200 Subject: [PATCH] larger fonts in all dialogs when using minimal UI --- src/emucore/FrameBuffer.cxx | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/emucore/FrameBuffer.cxx b/src/emucore/FrameBuffer.cxx index 8caa23fef..447a58228 100644 --- a/src/emucore/FrameBuffer.cxx +++ b/src/emucore/FrameBuffer.cxx @@ -97,7 +97,10 @@ bool FrameBuffer::initialize() // The general font used in all UI elements // This is determined by the size of the framebuffer - myFont = make_unique(GUI::stellaMediumDesc); + if(myOSystem.settings().getBool("minimal_ui")) + myFont = make_unique(GUI::stellaLargeDesc); + else + myFont = make_unique(GUI::stellaMediumDesc); // The info font used in all UI elements // This is determined by the size of the framebuffer