Ignore:
Timestamp:
Apr 22, 2011, 7:32:13 PM (12 years ago)
Author:
Sam Hocevar
Message:

imlib: rename trans_image to TImage. The code is now clean enough.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • abuse/trunk/src/seq.h

    r527 r533  
    3030  int next_frame(short &current) { current++; if (current>=total) { current=0; return 0; } return 1; }
    3131  int last_frame(short &current) { current--; if (current<0) { current=total-1; return 0; } return 1; }
    32   trans_image  *get_frame(short current, int direction)
     32  TImage  *get_frame(short current, int direction)
    3333   { if (direction>0) return cache.fig(seq[current])->forward;
    3434                 else return cache.fig(seq[current])->backward; }
Note: See TracChangeset for help on using the changeset viewer.