From e554ca24cd0621df63a1a96f3e6114168a50bbba Mon Sep 17 00:00:00 2001 From: Nikita <102851041+HyperNiki@users.noreply.github.com> Date: Mon, 9 May 2022 12:18:24 +0300 Subject: tests/SolidColors: fix not displaying blue --- UefiMonitorTest/tests/SolidColors.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/UefiMonitorTest/tests/SolidColors.c b/UefiMonitorTest/tests/SolidColors.c index 14fe23b..18fe922 100644 --- a/UefiMonitorTest/tests/SolidColors.c +++ b/UefiMonitorTest/tests/SolidColors.c @@ -94,7 +94,7 @@ SolidColorsTestChangeValue ( CurrentColor = UMT_COLOR_BLUE; else { CurrentColor += ValueStep; - if (CurrentColor >= UMT_COLOR_BLUE) + if (CurrentColor > UMT_COLOR_BLUE) CurrentColor = 0; } -- cgit v1.2.3-18-g5258