change output chars
This commit is contained in:
parent
891f79151b
commit
6c6e8dfc12
12
w/w.c
12
w/w.c
|
@ -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");
|
||||
|
|
Loading…
Reference in New Issue