Changeset 24146


Ignore:
Timestamp:
10/08/13 22:52:59 (10 years ago)
Author:
nit
Message:

[titan] test

Location:
titan/titan
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • titan/titan/struct.h

    r24138 r24146  
    638638        int regverticaladdress;
    639639        int scaleposx, scaleposy;
     640        int drawed;
    640641        struct subpagereg *next;
    641642};
  • titan/titan/subtitle.h

    r24145 r24146  
    8080                while(pageregnode != NULL)
    8181                {
     82                        if(pageregnode->drawed == 0)
     83                        {
     84                                pageregnode = pageregnode->next;
     85                                continue;                       
     86                        }
     87                       
    8288                        struct subreg *regnode = subnode->regions;
    8389                        while(regnode != NULL)
     
    206212                        pageregnode->scaleposx = posx;
    207213                        pageregnode->scaleposy = posy;
     214                        pageregnode->drawed = 1;
    208215
    209216                        //scale
Note: See TracChangeset for help on using the changeset viewer.