From ab64b9f3b050c26b08bbd7865768e36784157578 Mon Sep 17 00:00:00 2001 From: Alex Date: Sat, 25 Mar 2023 12:11:18 +0200 Subject: [PATCH] Fix logic in conditional statement inside sys_print --- SystemCalls/Native.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/SystemCalls/Native.cpp b/SystemCalls/Native.cpp index 9aa14e8..4051dbb 100644 --- a/SystemCalls/Native.cpp +++ b/SystemCalls/Native.cpp @@ -54,7 +54,7 @@ static int sys_print(SyscallsFrame *Frame, char Char, int Index) char ret = Display->Print(Char, Index, true); #ifdef DEBUG - if (!Config.BootAnimation && Index != 0) + if (!Config.BootAnimation && Index == 0) Display->SetBuffer(Index); #endif UNUSED(Frame);