From a7c36b5e6dadc0ed9429f570d96cd1ac35212c43 Mon Sep 17 00:00:00 2001 From: Fudgerboy <91767657+Fudgerboy@users.noreply.github.com> Date: Mon, 4 Dec 2023 03:17:25 +0000 Subject: Sun, Dec 3, 2023, 7:17 PM -08:00 --- wk1/pset1/mario-more/mario.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'wk1/pset1/mario-more') diff --git a/wk1/pset1/mario-more/mario.c b/wk1/pset1/mario-more/mario.c index 4bc2183..810048a 100644 --- a/wk1/pset1/mario-more/mario.c +++ b/wk1/pset1/mario-more/mario.c @@ -33,7 +33,7 @@ void print_grid(size) { if ((size - (j + i)) > 1) { - printf(" "); + printf("!"); } else { @@ -46,7 +46,7 @@ void print_grid(size) } else { - printf(" "); + printf("!"); } } printf(" "); -- cgit v1.2.3