Browse Source

testcolorspace.c: Fix unreachable code warning

Petar Popovic 6 months ago
parent
commit
48c3ee2120
1 changed files with 0 additions and 4 deletions
  1. 0 4
      test/testcolorspace.c

+ 0 - 4
test/testcolorspace.c

@@ -126,10 +126,6 @@ static void PrevRenderer(void)
 
 static void NextStage(void)
 {
-    if (StageCount <= 0) {
-        return;
-    }
-
     ++stage_index;
     if (stage_index == StageCount) {
         stage_index = 0;