Codacy warnings.

This commit is contained in:
Linus Probert 2017-12-18 10:03:58 +01:00
parent c88c64f4b8
commit 995a2f4475
1 changed files with 2 additions and 2 deletions

View File

@ -179,9 +179,9 @@ player_print(Player *p)
printf("\n");
printf("--------=== <[ Player Stats ]> ===--------\n");
printf("HP: %d\n", p->stats.hp);
printf("Level: %d XP: %d\n", p->stats.lvl, p->xp);
printf("Level: %d XP: %u\n", p->stats.lvl, p->xp);
printf("Pos: %dx%d RoomPos: %dx%d\n", pos.x, pos.y, roomPos.x, roomPos.y);
printf("Steps: %d\n", p->total_steps);
printf("Steps: %u\n", p->total_steps);
printf("------------------------------------------\n");
}