Skip to content

Commit

Permalink
Fix draw_entity_with_overlays return type.
Browse files Browse the repository at this point in the history
Function doesn't return anything.
  • Loading branch information
CIB committed Sep 14, 2014
1 parent 8825ba0 commit 04d6ec2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/cata_tiles.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1096,7 +1096,7 @@ bool cata_tiles::draw_entity(int x, int y)
return false;
}

bool cata_tiles::draw_entity_with_overlays(int x, int y) {
void cata_tiles::draw_entity_with_overlays(int x, int y) {
const player* entity_to_draw = NULL;
bool is_player = false;
std::string ent_name;
Expand Down
2 changes: 1 addition & 1 deletion src/cata_tiles.h
Original file line number Diff line number Diff line change
Expand Up @@ -232,7 +232,7 @@ class cata_tiles
bool draw_field_or_item(int x, int y);
bool draw_vpart(int x, int y);
bool draw_entity(int x, int y);
bool draw_entity_with_overlays(int x, int y);
void draw_entity_with_overlays(int x, int y);

bool draw_item_highlight(int x, int y);

Expand Down

0 comments on commit 04d6ec2

Please sign in to comment.