Update backdrop.c

This commit is contained in:
Jason Bou-Samra
2024-10-28 20:01:52 +11:00
committed by GitHub
parent 0e3c36de41
commit 270aa4178f
+8
View File
@@ -83,3 +83,11 @@ int grad_tab[] = {
return 0; return 0;
} }
//////////////// GRADIENT CYCLE /////////////////////
int cyc_grad (void) {
colour = colour + 10;
if (colour >= 69) {colour = 0;}
backdrop(colour);
return 0;
}