Ignore:
Timestamp:
May 15, 2011, 6:22:08 AM (12 years ago)
Author:
Sam Hocevar
Message:

imlib: refactor a few image methods so that they use vec2i.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • abuse/trunk/src/cop.cpp

    r650 r655  
    10641064  y+=fnt->height();
    10651065
    1066   main_screen->widget_bar(x,y+2,x+strlen(header_str)*fnt->width(),y+fnt->height()-3,
    1067              wm->bright_color(),wm->medium_color(),wm->dark_color());
     1066  main_screen->WidgetBar(vec2i(x, y + 2),
     1067                         vec2i(x + strlen(header_str) * fnt->width(),
     1068                               y + fnt->height() - 3),
     1069                         wm->bright_color(), wm->medium_color(),
     1070                         wm->dark_color());
    10681071  y+=fnt->height();
    10691072  v=player_list;
Note: See TracChangeset for help on using the changeset viewer.