From fc4cc5d18962ce0c2107c086defe3a2ac0f971bc Mon Sep 17 00:00:00 2001 From: EnderIce2 Date: Fri, 23 Feb 2024 03:51:07 +0200 Subject: [PATCH] Add GetDefaultFont() method to Display class --- include/display.hpp | 1 + 1 file changed, 1 insertion(+) diff --git a/include/display.hpp b/include/display.hpp index 78063419..bad842d0 100644 --- a/include/display.hpp +++ b/include/display.hpp @@ -206,6 +206,7 @@ namespace Video decltype(Height) &GetHeight = Height; BootInfo::FramebufferInfo GetFramebufferStruct() { return framebuffer; } + Font *GetDefaultFont() { return DefaultFont; } Font *GetCurrentFont(); void SetCurrentFont(Font *Font); uint16_t GetBitsPerPixel();