diff options
author | John Hawthorn <jhawthor@uvic.ca> | 2008-05-22 01:49:16 -0700 |
---|---|---|
committer | John Hawthorn <jhawthor@uvic.ca> | 2008-05-22 01:49:16 -0700 |
commit | 9e76bd849a935eed17a4d22a9f49974272a36da5 (patch) | |
tree | 563f78ecfd230383fce3303662a190c890cff3d0 /src | |
parent | 3551b64bd20efb9c7378ef4fd606df35941d4ee9 (diff) | |
download | mirror-meh-9e76bd849a935eed17a4d22a9f49974272a36da5.tar.gz mirror-meh-9e76bd849a935eed17a4d22a9f49974272a36da5.tar.bz2 mirror-meh-9e76bd849a935eed17a4d22a9f49974272a36da5.zip |
cleanup
Diffstat (limited to 'src')
-rw-r--r-- | src/gif.c | 2 | ||||
-rw-r--r-- | src/jpeg.c | 2 | ||||
-rw-r--r-- | src/main.c | 6 | ||||
-rw-r--r-- | src/util.c | 3 | ||||
-rw-r--r-- | src/util.h | 1 |
5 files changed, 4 insertions, 10 deletions
@@ -2,7 +2,7 @@ #include <stdio.h> #include <string.h> -#include "gif.h" +#include "meh.h" #define GIF87a 0 #define GIF89a 1 @@ -7,7 +7,7 @@ #include "jpeglib.h" -#include "jpeg.h" +#include "meh.h" struct error_mgr{ struct jpeg_error_mgr pub; @@ -9,8 +9,7 @@ #include <sys/time.h> -#include "jpeg.h" -#include "gif.h" +#include "meh.h" Display *display; int screen; @@ -127,8 +126,7 @@ unsigned char *loadbuf(const char *filename, int *bufwidth, int *bufheight){ if(head[0] == 0xff && head[1] == 0xd8){ buf = loadjpeg(f, bufwidth, bufheight); }else if(!memcmp("\x89PNG", head, 4)){ - printf("IT'S A PNG!!!\n"); - buf = NULL; + buf = loadpng(f, bufwidth, bufheight); }else if(!memcmp("GIF", head, 3)){ buf = loadgif(f, bufwidth, bufheight); }else{ diff --git a/src/util.c b/src/util.c deleted file mode 100644 index 55538e7..0000000 --- a/src/util.c +++ /dev/null @@ -1,3 +0,0 @@ - -#include "util.h" - diff --git a/src/util.h b/src/util.h deleted file mode 100644 index 8b13789..0000000 --- a/src/util.h +++ /dev/null @@ -1 +0,0 @@ - |