Changes in client/Client/Window.cpp [87b3ee2:1a1aebd] in network-game
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
client/Client/Window.cpp
r87b3ee2 r1a1aebd 8 8 Window::~Window(void) 9 9 { 10 for( int x=0; x<this->vctGui.size(); x++)10 for(unsigned int x=0; x<this->vctGui.size(); x++) 11 11 delete this->vctGui[x]; 12 12 } … … 26 26 al_clear_to_color(al_map_rgb(0, 0, 0)); 27 27 28 for( int x=0; x<this->vctGui.size(); x++)28 for(unsigned int x=0; x<this->vctGui.size(); x++) 29 29 this->vctGui[x]->draw(display); 30 30 } … … 32 32 bool Window::handleEvent(ALLEGRO_EVENT& e) 33 33 { 34 for( int x=0; x<this->vctGui.size(); x++) {34 for(unsigned int x=0; x<this->vctGui.size(); x++) { 35 35 if(this->vctGui[x]->handleEvent(e)) { 36 36 return true;
Note:
See TracChangeset
for help on using the changeset viewer.