X-Git-Url: http://4ch.mooo.com/gitweb/?a=blobdiff_plain;f=src%2Flib%2Fbitmap.c;h=864878d8b3776016d3d6d62ee9713534d16f85b7;hb=0797174ac571f1ff80ba3fa86ae362cd10864e14;hp=8d73860762a01ac6cb9ff2a41dbea8ab37de9edb;hpb=c9130ec378d97a7fcdee0aed180f3eca8a3ad880;p=16.git diff --git a/src/lib/bitmap.c b/src/lib/bitmap.c index 8d738607..864878d8 100644 --- a/src/lib/bitmap.c +++ b/src/lib/bitmap.c @@ -91,16 +91,16 @@ bitmapLoadPcx(char *filename) { /* allocate the buffer */ //printf("%zu\n", _memmax()); bufSize = (/*(dword)*/result.width * result.height); - result.data = (byte __near *)malloc(bufSize); + result.data = malloc(bufSize); // result.data = (byte far *)_fmalloc(bufSize); // result.data = (byte __huge *)halloc(bufSize, sizeof(byte)); - printf("&bufSize=%p\n", &bufSize); + /*printf("&bufSize=%p\n", &bufSize); printf("&result.data=%p\n", result.data); printf("Size of block is %zu bytes\n", _msize(result.data)); printf("Size of bufSize is %zu bytes\n", bufSize); printf("Size of result.width is %zu \n", result.width); printf("Size of result.height is %zu \n", result.height); - printf("Dimensions of result is %lu\n", (dword)result.width*result.height); + printf("Dimensions of result is %lu\n", (dword)result.width*result.height);*/ //exit(0); if(!result.data) { fprintf(stderr, "Could not allocate memory for bitmap data.");