Changeset 534 for abuse/trunk/src/imlib/video.cpp
- Timestamp:
- Apr 22, 2011, 7:32:17 PM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
abuse/trunk/src/imlib/video.cpp
r524 r534 29 29 else 30 30 { 31 int count = im->m_special->dirties. number_nodes();31 int count = im->m_special->dirties.Count(); 32 32 dirty_rect *dr = (dirty_rect *)(im->m_special->dirties.first()); 33 33 while(count > 0) … … 36 36 dr->dx1, dr->dy1, dr->dx2 + 1, dr->dy2 + 1); 37 37 dirty_rect *tmp = dr; 38 dr = (dirty_rect *)(dr-> next());38 dr = (dirty_rect *)(dr->Next()); 39 39 im->m_special->dirties.unlink(tmp); 40 40 delete tmp;
Note: See TracChangeset
for help on using the changeset viewer.