Changeset 1a1aebd in network-game for client/Client/Window.cpp


Ignore:
Timestamp:
Dec 3, 2012, 1:31:42 PM (12 years ago)
Author:
dportnoy <dmp1488@…>
Branches:
master
Children:
581058c
Parents:
b53c6b3
Message:

Updated client Visual Studio files

File:
1 edited

Legend:

Unmodified
Added
Removed
  • client/Client/Window.cpp

    rb53c6b3 r1a1aebd  
    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.