diff options
-rw-r--r-- | UefiMonitorTest/tests/SolidColors.c | 2 |
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; } |