Changeset 581058c in network-game for client/Client/Window.cpp


Ignore:
Timestamp:
Dec 9, 2012, 4:39:09 PM (12 years ago)
Author:
dportnoy <dmp1488@…>
Branches:
master
Children:
da692b9, e607c0f
Parents:
3b1efcc (diff), 1a1aebd (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the (diff) links above to see all the changes relative to each parent.
Message:

Merge branch 'master' of github.com:weretaco/network-game

File:
1 edited

Legend:

Unmodified
Added
Removed
  • client/Client/Window.cpp

    r3b1efcc r581058c  
    88Window::~Window(void)
    99{
    10    for(int x=0; x<this->vctGui.size(); x++)
     10   for(unsigned 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(int x=0; x<this->vctGui.size(); x++)
     28   for(unsigned int x=0; x<this->vctGui.size(); x++)
    2929      this->vctGui[x]->draw(display);
    3030}
     
    3232bool Window::handleEvent(ALLEGRO_EVENT& e)
    3333{
    34    for(int x=0; x<this->vctGui.size(); x++) {
     34   for(unsigned 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.