Changes in / [b1ce08c:f15d6a9] in network-game


Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • client/Client/GameRender.cpp

    rb1ce08c rf15d6a9  
    22
    33#include <cmath>
    4 #include <iostream>
    54
    65#include <allegro5/allegro_primitives.h>
    76
    87#include "../../common/Common.h"
    9 
    10 using namespace std;
    118
    129void GameRender::drawMap(WorldMap* gameMap)
     
    10097      else if (p->team == 1)
    10198         color = al_map_rgb(255, 0, 0);
    102       else {
    103          color = al_map_rgb(0, 0, 0);
    104          cout << "Failed to determine player team when drawing player" << endl;
    105       }
    10699     
    107100      al_draw_filled_circle(pos.x, pos.y, 12, color);
Note: See TracChangeset for help on using the changeset viewer.