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


Ignore:
Timestamp:
Jan 26, 2014, 12:02:49 AM (11 years ago)
Author:
Dmitry Portnoy <dmp1488@…>
Branches:
master
Children:
c51da03
Parents:
9ee50ce
Message:

Client makefile is up-to-date and includes -Wall

File:
1 edited

Legend:

Unmodified
Added
Removed
  • client/Client/RadioButtonList.cpp

    r9ee50ce r1e250bf  
    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.