aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJoursoir <chat@joursoir.net>2021-12-15 14:55:37 +0300
committerJoursoir <chat@joursoir.net>2021-12-15 14:55:37 +0300
commit07a1c8f9511cfac7202904a4e07e6f9f8a228d06 (patch)
treef7dde1c40e54d268e18ab24a3f04c94170a0dbe2
parent5117ed86d5a1b1a264cc05ff660a296d638b2ed9 (diff)
downloadufm-07a1c8f9511cfac7202904a4e07e6f9f8a228d06.tar.gz
ufm-07a1c8f9511cfac7202904a4e07e6f9f8a228d06.tar.bz2
ufm-07a1c8f9511cfac7202904a4e07e6f9f8a228d06.zip
tbi/screen: set attrs to initial values before clearing the screen
-rw-r--r--Library/UefiShellUfmCommandLib/tbi/screen.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/Library/UefiShellUfmCommandLib/tbi/screen.c b/Library/UefiShellUfmCommandLib/tbi/screen.c
index daca9c9..d58523c 100644
--- a/Library/UefiShellUfmCommandLib/tbi/screen.c
+++ b/Library/UefiShellUfmCommandLib/tbi/screen.c
@@ -39,5 +39,6 @@ VOID screen_clear(struct screen *scr)
{
ASSERT(scr != NULL);
+ scr->stdout->SetAttribute(scr->stdout, scr->attr);
scr->stdout->ClearScreen(scr->stdout);
}