aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNikita <102851041+HyperNiki@users.noreply.github.com>2022-05-09 12:18:24 +0300
committerGitHub <noreply@github.com>2022-05-09 12:18:24 +0300
commite554ca24cd0621df63a1a96f3e6114168a50bbba (patch)
tree6cc7d9df734486dd5f41dba966ae2dc0b1a55783
parent8e0653cc8de397230dda574945a81b9780c28ee9 (diff)
downloadumt-e554ca24cd0621df63a1a96f3e6114168a50bbba.tar.gz
umt-e554ca24cd0621df63a1a96f3e6114168a50bbba.tar.bz2
umt-e554ca24cd0621df63a1a96f3e6114168a50bbba.zip
tests/SolidColors: fix not displaying blue
-rw-r--r--UefiMonitorTest/tests/SolidColors.c2
1 files changed, 1 insertions, 1 deletions
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;
}