Changeset 523 for abuse/trunk/src/imlib/filter.cpp
- Timestamp:
- Apr 22, 2011, 4:12:48 AM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
abuse/trunk/src/imlib/filter.cpp
r518 r523 16 16 #include "macs.h" 17 17 #include "filter.h" 18 19 extern unsigned char current_background;20 18 21 19 filter::filter(palette *from, palette *to) // creates a conversion filter from one palette to another … … 224 222 i++, source++, dest++) 225 223 { 226 if (!transparent || *source != current_background)224 if (!transparent || *source) 227 225 *dest=fdat[*source]; 228 226 }
Note: See TracChangeset
for help on using the changeset viewer.