Changeset 129 for abuse/trunk/src/imlib/timage.cpp
- Timestamp:
- Mar 22, 2008, 10:39:25 AM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
abuse/trunk/src/imlib/timage.cpp
r115 r129 100 100 char st[80]; 101 101 sprintf(st,"trans_image::data (%s)",name); 102 data=(uint8_t *) jmalloc(size,st);102 data=(uint8_t *)malloc(size); 103 103 #else 104 data=(uint8_t *) jmalloc(size,"");104 data=(uint8_t *)malloc(size); 105 105 #endif 106 106 int ww=im->width(),hh=im->height();
Note: See TracChangeset
for help on using the changeset viewer.