We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d78001b commit 273e4cbCopy full SHA for 273e4cb
gti.c
@@ -194,6 +194,17 @@ void line_at(int start_x, const char *s)
194
void draw_car(int x)
195
{
196
move_to_top();
197
+ if (x == 23) {
198
+ line_at(x, " | |");
199
+ line_at(x, " ___ _ __ ___| |");
200
+ line_at(x, " / _ \\| '_ \\ / _ \\ |");
201
+ line_at(x, "| (_) | |_) | __/ |");
202
+ line_at(x, " \\___/| .__/ \\___|_|");
203
+ line_at(x, " | | ");
204
+ line_at(x, " |_| ");
205
+ return;
206
+ }
207
+
208
line_at(x, " ,---------------.");
209
line_at(x, " / /``````|``````\\\\");
210
line_at(x, " / /_______|_______\\\\________");
@@ -207,6 +218,7 @@ void draw_car(int x)
218
line_at(x, " ` X -------------- X '");
219
line_at(x, " ':-:' ':-:' ");
220
}
221
222
211
223
212
224
void clear_car(int x)
0 commit comments