Changeset 1e250bf in network-game for client/Client/RadioButtonList.cpp
- Timestamp:
- Jan 26, 2014, 12:02:49 AM (11 years ago)
- Branches:
- master
- Children:
- c51da03
- Parents:
- 9ee50ce
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
client/Client/RadioButtonList.cpp
r9ee50ce r1e250bf 23 23 al_clear_to_color(al_map_rgb(0, 0, 0)); 24 24 25 int fontHeight = al_get_font_line_height(font);25 //int fontHeight = al_get_font_line_height(font); 26 26 27 27 al_draw_text(font, al_map_rgb(0, 255, 0), 0, 0, ALLEGRO_ALIGN_LEFT, this->strLabel.c_str()); … … 44 44 if (e.type == ALLEGRO_EVENT_MOUSE_BUTTON_UP) { 45 45 if (e.mouse.button == 1) { 46 for ( int i=0; i<this->vctRadioButtons.size(); i++) {46 for (unsigned int i=0; i<this->vctRadioButtons.size(); i++) { 47 47 centerY = y+26+i*20; 48 48
Note:
See TracChangeset
for help on using the changeset viewer.