change output chars

This commit is contained in:
quenousimporte 2025-03-26 21:21:55 +00:00
parent 891f79151b
commit 6c6e8dfc12
1 changed files with 10 additions and 2 deletions

12
w/w.c
View File

@ -228,7 +228,15 @@ void update(char command)
char replacechar(char in, int y)
{
if (in == 'w')
{
return '#';
}
else if (in == 'd')
{
return '*';
}
return in;
}
@ -258,7 +266,7 @@ void draw()
}
else
{
printf("%c", pov[y][x]);
printf("%c", replacechar(pov[y][x], y));
}
}
printf(" |\n");