Add IgnoreSpecialChars parameter to Print and PrintString functions

This commit is contained in:
EnderIce2
2024-02-19 01:42:29 +02:00
parent 5adc4151a6
commit 495e75c649
2 changed files with 16 additions and 7 deletions

View File

@ -238,11 +238,13 @@ namespace Video
char Print(char Char,
Video::Font *Font = nullptr,
bool WriteToUART = false);
bool WriteToUART = false,
bool IgnoreSpecialChars = false);
void PrintString(const char *String,
Video::Font *Font = nullptr,
bool WriteToUART = false);
bool WriteToUART = false,
bool IgnoreSpecialChars = false);
Display(BootInfo::FramebufferInfo Info,
bool LoadDefaultFont = true,