summaryrefslogtreecommitdiff
path: root/frontends/kolibrios/fb/framebuffer.c
diff options
context:
space:
mode:
Diffstat (limited to 'frontends/kolibrios/fb/framebuffer.c')
-rw-r--r--frontends/kolibrios/fb/framebuffer.c15
1 files changed, 10 insertions, 5 deletions
diff --git a/frontends/kolibrios/fb/framebuffer.c b/frontends/kolibrios/fb/framebuffer.c
index 649862aa3..eae6a0605 100644
--- a/frontends/kolibrios/fb/framebuffer.c
+++ b/frontends/kolibrios/fb/framebuffer.c
@@ -35,11 +35,11 @@
#include "netsurf/plotters.h"
#include "netsurf/bitmap.h"
-#include "framebuffer/gui.h"
-#include "framebuffer/fbtk.h"
-#include "framebuffer/framebuffer.h"
-#include "framebuffer/font.h"
-#include "framebuffer/bitmap.h"
+#include "kolibrios/fb/gui.h"
+#include "kolibrios/fb/fbtk.h"
+#include "kolibrios/fb/framebuffer.h"
+#include "kolibrios/fb/font.h"
+#include "kolibrios/fb/bitmap.h"
/* netsurf framebuffer library handle */
static nsfb_t *nsfb;
@@ -581,8 +581,13 @@ framebuffer_initialise(const char *fename, int width, int height, int bpp)
return NULL;
}
+ fprintf(stderr, "Our: %s\n", fename);
+
+ __asm__ __volatile__("int3");
+
fbtype = nsfb_type_from_name(fename);
if (fbtype == NSFB_SURFACE_NONE) {
+ fprintf(stderr, "Got fucked here because nsfb_type_from_name failed for : %s\n", fename);
LOG("The %s surface is not available from libnsfb\n", fename);
return NULL;
}