Changeset c51da03 in network-game for client/Client/RadioButtonList.cpp


Ignore:
Timestamp:
Jan 26, 2014, 9:46:43 PM (11 years ago)
Author:
dportnoy <dmp1488@…>
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.
Message:

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

File:
1 edited

Legend:

Unmodified
Added
Removed
  • client/Client/RadioButtonList.cpp

    r5c7f28d rc51da03  
    2323   al_clear_to_color(al_map_rgb(0, 0, 0));
    2424
    25    int fontHeight = al_get_font_line_height(font);
     25   //int fontHeight = al_get_font_line_height(font);
    2626
    2727   al_draw_text(font, al_map_rgb(0, 255, 0), 0, 0, ALLEGRO_ALIGN_LEFT, this->strLabel.c_str());
     
    4444   if (e.type == ALLEGRO_EVENT_MOUSE_BUTTON_UP) {
    4545      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++) {
    4747            centerY = y+26+i*20;
    4848
Note: See TracChangeset for help on using the changeset viewer.