forked from KolibriOS/kolibrios
htmlv 0.68b: memory.h-- deleted, now using mem.h--
git-svn-id: svn://kolibrios.org@2153 a494cfbc-eb01-0410-851d-a64ba20cac60
This commit is contained in:
@@ -49,7 +49,8 @@ int tile_height=2,//
|
||||
i, skin_width,
|
||||
shift=-2;
|
||||
|
||||
italic_buf = malloc(w*h*3);
|
||||
italic_buf = mem_Alloc(w*h*3);
|
||||
|
||||
skin_width = GetSkinWidth();
|
||||
|
||||
CopyScreen(italic_buf, w * 65536 + h, x + Form.left + 2 * 65536 + y + Form.top + skin_width);
|
||||
@@ -58,5 +59,5 @@ shift=-2;
|
||||
FOR (i=0;i*tile_height<h;i++){
|
||||
PutImage(w*3*tile_height*i+italic_buf,w,tile_height,x+shift-i+1,i*tile_height+y);
|
||||
}
|
||||
free(italic_buf);
|
||||
mem_Free(italic_buf);
|
||||
}
|
||||
|
Reference in New Issue
Block a user