updated bigender and genderfluid flags to use new draw function

This commit is contained in:
Valerie Wolfe 2024-03-23 00:44:40 -04:00
parent 3d7383fb0c
commit 8623827d7c
2 changed files with 32 additions and 28 deletions

30
basic.c
View file

@ -28,13 +28,14 @@ void aroace_8() {
}
void bigender_8() {
printf(
L_RED STRIPE
L_YELLOW STRIPE
WHITE STRIPE
MAGENTA STRIPE
L_BLUE STRIPE
);
color colors [] = {
L_RED,
L_YELLOW,
WHITE,
MAGENTA,
L_BLUE
};
draw(5, colors);
}
void bisexual_8() {
@ -60,13 +61,14 @@ void gay_8() {
}
void genderfluid_8() {
printf(
L_RED STRIPE
WHITE STRIPE
MAGENTA STRIPE
BLACK STRIPE
BLUE STRIPE
);
color colors [] = {
L_RED,
WHITE,
MAGENTA,
BLACK,
BLUE
};
draw(5, colors);
}
void lesbian_8() {

30
full.c
View file

@ -28,13 +28,14 @@ void aroace_256() {
}
void bigender_256() {
printf(
COLOR(204) STRIPE
COLOR(227) STRIPE
COLOR(255) STRIPE
COLOR(134) STRIPE
COLOR(69) STRIPE
);
color colors [] = {
204, // pink
227, // yellow
255, // white
134, // purple
69 // blue
};
draw(5, colors);
}
void bisexual_256() {
@ -62,13 +63,14 @@ void gay_256() {
}
void genderfluid_256() {
printf(
COLOR(204) STRIPE
COLOR(255) STRIPE
COLOR(164) STRIPE
COLOR(16) STRIPE
COLOR(63) STRIPE
);
color colors[] = {
204, // pink
255, // white
164, // purple
16, // black
63, // blue
};
draw(5, colors);
}
void lesbian_256() {