Changeset 85da778 in network-game for client/Client/GameRender.cpp
- Timestamp:
- Nov 11, 2014, 1:26:14 AM (10 years ago)
- Branches:
- master
- Children:
- 6ba31d2
- Parents:
- 48801af
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
client/Client/GameRender.cpp
r48801af r85da778 96 96 al_draw_filled_circle(pos.x, pos.y, 14, al_map_rgb(0, 0, 0)); 97 97 98 if (p->team == 1)98 if (p->team == Player::TEAM_BLUE) 99 99 color = al_map_rgb(0, 0, 255); 100 else if (p->team == 2)100 else if (p->team == Player::TEAM_RED) 101 101 color = al_map_rgb(255, 0, 0); 102 102 else {
Note:
See TracChangeset
for help on using the changeset viewer.