Changeset c51da03 in network-game for client/Client/RadioButtonList.cpp
- Timestamp:
- Jan 26, 2014, 9:46:43 PM (11 years ago)
- Branches:
- master
- Children:
- c991530
- Parents:
- 5c7f28d (diff), 1e250bf (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. - File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
client/Client/RadioButtonList.cpp
r5c7f28d rc51da03 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.