Skip to content

Commit

Permalink
Fix the player icon when graphics are enabled (#595)
Browse files Browse the repository at this point in the history
  • Loading branch information
nstoddard authored Sep 1, 2023
1 parent 5b7a72e commit 58e8096
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/brogue/Monsters.c
Original file line number Diff line number Diff line change
Expand Up @@ -385,9 +385,9 @@ void initializeGender(creature *monst) {
/// @brief Sets the character used to represent the player in the game, based on the game mode
void setPlayerDisplayChar() {
if (rogue.easyMode) {
player.info.displayChar = '&';
player.info.displayChar = G_DEMON;
} else {
player.info.displayChar = '@';
player.info.displayChar = G_PLAYER;
}
}

Expand Down

0 comments on commit 58e8096

Please sign in to comment.