Changes in client/Client/Window.cpp [1a1aebd:87b3ee2] in network-game


Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • client/Client/Window.cpp

    r1a1aebd r87b3ee2  
    88Window::~Window(void)
    99{
    10    for(unsigned int x=0; x<this->vctGui.size(); x++)
     10   for(int x=0; x<this->vctGui.size(); x++)
    1111      delete this->vctGui[x];
    1212}
     
    2626   al_clear_to_color(al_map_rgb(0, 0, 0));
    2727
    28    for(unsigned int x=0; x<this->vctGui.size(); x++)
     28   for(int x=0; x<this->vctGui.size(); x++)
    2929      this->vctGui[x]->draw(display);
    3030}
     
    3232bool Window::handleEvent(ALLEGRO_EVENT& e)
    3333{
    34    for(unsigned int x=0; x<this->vctGui.size(); x++) {
     34   for(int x=0; x<this->vctGui.size(); x++) {
    3535      if(this->vctGui[x]->handleEvent(e)) {
    3636         return true;
Note: See TracChangeset for help on using the changeset viewer.