summaryrefslogtreecommitdiff
path: root/examples
diff options
context:
space:
mode:
authorChris Young <chris@unsatisfactorysoftware.co.uk>2009-04-19 11:53:23 +0000
committerChris Young <chris@unsatisfactorysoftware.co.uk>2009-04-19 11:53:23 +0000
commit32a7d2d7076cc7897c55d7f5f656e507bed3c94f (patch)
tree19d7dc35ec177e9dbb402c5c9e2f3e90c228c6e8 /examples
parent03f17644b42f77aae7827b53128aaf209869092b (diff)
downloadlibnsbmp-32a7d2d7076cc7897c55d7f5f656e507bed3c94f.tar.gz
libnsbmp-32a7d2d7076cc7897c55d7f5f656e507bed3c94f.tar.bz2
Fix compilation
svn path=/trunk/libnsbmp/; revision=7133
Diffstat (limited to 'examples')
-rw-r--r--examples/decode_bmp.c2
-rw-r--r--examples/decode_ico.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/examples/decode_bmp.c b/examples/decode_bmp.c
index 6834318..cdeaaf4 100644
--- a/examples/decode_bmp.c
+++ b/examples/decode_bmp.c
@@ -15,7 +15,7 @@
#include <stdio.h>
#include <string.h>
#include <sys/stat.h>
-#include "../libnsbmp.h"
+#include "../include/libnsbmp.h"
#define BYTES_PER_PIXEL 4
#define TRANSPARENT_COLOR 0xffffffff
diff --git a/examples/decode_ico.c b/examples/decode_ico.c
index 7d3ea4f..c62b009 100644
--- a/examples/decode_ico.c
+++ b/examples/decode_ico.c
@@ -15,7 +15,7 @@
#include <stdio.h>
#include <string.h>
#include <sys/stat.h>
-#include "../libnsbmp.h"
+#include "../include/libnsbmp.h"
/* Currently the library returns the data in RGBA format,
* so there are 4 bytes per pixel */