updated bigender and genderfluid flags to use new draw function
This commit is contained in:
parent
3d7383fb0c
commit
8623827d7c
2 changed files with 32 additions and 28 deletions
30
basic.c
30
basic.c
|
@ -28,13 +28,14 @@ void aroace_8() {
|
||||||
}
|
}
|
||||||
|
|
||||||
void bigender_8() {
|
void bigender_8() {
|
||||||
printf(
|
color colors [] = {
|
||||||
L_RED STRIPE
|
L_RED,
|
||||||
L_YELLOW STRIPE
|
L_YELLOW,
|
||||||
WHITE STRIPE
|
WHITE,
|
||||||
MAGENTA STRIPE
|
MAGENTA,
|
||||||
L_BLUE STRIPE
|
L_BLUE
|
||||||
);
|
};
|
||||||
|
draw(5, colors);
|
||||||
}
|
}
|
||||||
|
|
||||||
void bisexual_8() {
|
void bisexual_8() {
|
||||||
|
@ -60,13 +61,14 @@ void gay_8() {
|
||||||
}
|
}
|
||||||
|
|
||||||
void genderfluid_8() {
|
void genderfluid_8() {
|
||||||
printf(
|
color colors [] = {
|
||||||
L_RED STRIPE
|
L_RED,
|
||||||
WHITE STRIPE
|
WHITE,
|
||||||
MAGENTA STRIPE
|
MAGENTA,
|
||||||
BLACK STRIPE
|
BLACK,
|
||||||
BLUE STRIPE
|
BLUE
|
||||||
);
|
};
|
||||||
|
draw(5, colors);
|
||||||
}
|
}
|
||||||
|
|
||||||
void lesbian_8() {
|
void lesbian_8() {
|
||||||
|
|
30
full.c
30
full.c
|
@ -28,13 +28,14 @@ void aroace_256() {
|
||||||
}
|
}
|
||||||
|
|
||||||
void bigender_256() {
|
void bigender_256() {
|
||||||
printf(
|
color colors [] = {
|
||||||
COLOR(204) STRIPE
|
204, // pink
|
||||||
COLOR(227) STRIPE
|
227, // yellow
|
||||||
COLOR(255) STRIPE
|
255, // white
|
||||||
COLOR(134) STRIPE
|
134, // purple
|
||||||
COLOR(69) STRIPE
|
69 // blue
|
||||||
);
|
};
|
||||||
|
draw(5, colors);
|
||||||
}
|
}
|
||||||
|
|
||||||
void bisexual_256() {
|
void bisexual_256() {
|
||||||
|
@ -62,13 +63,14 @@ void gay_256() {
|
||||||
}
|
}
|
||||||
|
|
||||||
void genderfluid_256() {
|
void genderfluid_256() {
|
||||||
printf(
|
color colors[] = {
|
||||||
COLOR(204) STRIPE
|
204, // pink
|
||||||
COLOR(255) STRIPE
|
255, // white
|
||||||
COLOR(164) STRIPE
|
164, // purple
|
||||||
COLOR(16) STRIPE
|
16, // black
|
||||||
COLOR(63) STRIPE
|
63, // blue
|
||||||
);
|
};
|
||||||
|
draw(5, colors);
|
||||||
}
|
}
|
||||||
|
|
||||||
void lesbian_256() {
|
void lesbian_256() {
|
||||||
|
|
Loading…
Reference in a new issue