summaryrefslogtreecommitdiff
path: root/wk1/pset1
diff options
context:
space:
mode:
authorFudgerboy <91767657+Fudgerboy@users.noreply.github.com>2023-12-04 03:22:24 +0000
committerFudgerboy <91767657+Fudgerboy@users.noreply.github.com>2023-12-04 03:22:24 +0000
commit197319e1d5d67c82c4caa794964ff1a3d3494eac (patch)
treecda29405db17c1389c13a77fc213b4e1f9759826 /wk1/pset1
parent3b914f08593dcece1c51aff46312357e546ccb51 (diff)
Sun, Dec 3, 2023, 7:22 PM -08:00
Diffstat (limited to 'wk1/pset1')
-rw-r--r--wk1/pset1/mario-more/mario.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/wk1/pset1/mario-more/mario.c b/wk1/pset1/mario-more/mario.c
index ed1de18..e92a7ce 100644
--- a/wk1/pset1/mario-more/mario.c
+++ b/wk1/pset1/mario-more/mario.c
@@ -43,7 +43,7 @@ void print_grid(size)
printf(" ");
for (int j = size; j > 0; j--)
{
- if ((size - (j + i + i)) > 1)
+ if ((size - (j + i)) > 1)
{
printf("#");
}