add comment

trim trailing spaces
This commit is contained in:
quenousimporte 2025-03-29 12:31:42 +01:00
parent aae413fe1a
commit 246112d93c
1 changed files with 4 additions and 3 deletions

7
w/w.c
View File

@ -342,6 +342,7 @@ void clearscreen()
{
#ifdef _WIN32
system("cls");
// launch chcp 65001 before
#else
system("clear");
#endif
@ -364,7 +365,7 @@ void init()
void update(char command[CMD_LEN])
{
char c = command[0];
char c = command[0];
if (state.place == PLACE_MAP)
{
switch (c)
@ -407,7 +408,7 @@ void update(char command[CMD_LEN])
void draw()
{
clearscreen();
if (state.place == PLACE_TITLE)
{
printf("\n\n La légende des dongeons de l'espace\n\n\n");
@ -481,7 +482,7 @@ int main()
init();
char command[CMD_LEN] = "";
while (command[0] != 'q')
{
update(command);