mirror of
https://github.com/Fennix-Project/Kernel.git
synced 2025-07-10 23:09:18 +00:00
Add IgnoreSpecialChars parameter to Print and PrintString functions
This commit is contained in:
@ -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,
|
||||
|
Reference in New Issue
Block a user