X-Git-Url: https://notaz.gp2x.de/cgi-bin/gitweb.cgi?p=ginge.git;a=blobdiff_plain;f=common%2Fhost_fb.c;h=a59e869a651bc25246b3dfb22372698141a2458e;hp=d0cc7543476b497d8f9cecc7095f36028ae417bc;hb=fea1465c72a13e859ddfc15419d680bc229cc315;hpb=2798b18cd4b43be61c95ed1af12b02237424c06f diff --git a/common/host_fb.c b/common/host_fb.c index d0cc754..a59e869 100644 --- a/common/host_fb.c +++ b/common/host_fb.c @@ -1,4 +1,9 @@ -// vim:shiftwidth=2:expandtab +/* + * GINGE - GINGE Is Not Gp2x Emulator + * (C) notaz, 2010-2011 + * + * This work is licensed under the MAME license, see COPYING file for details. + */ #include #ifdef LOADER #include "../loader/realfuncs.h" @@ -11,7 +16,7 @@ static int host_stride; #if defined(PND) -#include "linux/fbdev.c" +#include "libpicofe/linux/fbdev.c" static struct vout_fbdev *fbdev; static unsigned short host_pal[256]; @@ -32,7 +37,7 @@ int host_video_init(int *stride, int no_dblbuf) fbdev_name = "/dev/fb1"; w = h = 0; - fbdev = vout_fbdev_init(fbdev_name, &w, &h, 16, no_dblbuf); + fbdev = vout_fbdev_init(fbdev_name, &w, &h, 16, no_dblbuf ? 1 : 3); if (fbdev == NULL) return -1; @@ -206,3 +211,4 @@ void host_video_blit16(const unsigned short *src, int w, int h, int stride) #endif // WIZ +// vim:shiftwidth=2:expandtab