X-Git-Url: https://notaz.gp2x.de/cgi-bin/gitweb.cgi?p=pcsx_rearmed.git;a=blobdiff_plain;f=frontend%2Fplat_omap.c;h=f397cc61bac3d88a0a008636c62e0c744bca4189;hp=b01c634360e4196607243e63fca75e01972f6da9;hb=efcf1f7301adbcc06b05eb92fc01a32faa993cfa;hpb=f6edea0ca83c3c415fa338e3c2d9e1f3d99cc228 diff --git a/frontend/plat_omap.c b/frontend/plat_omap.c index b01c6343..f397cc61 100644 --- a/frontend/plat_omap.c +++ b/frontend/plat_omap.c @@ -14,10 +14,10 @@ #include #include -#include "common/menu.h" -#include "common/input.h" -#include "linux/fbdev.h" -#include "linux/xenv.h" +#include "libpicofe/menu.h" +#include "libpicofe/input.h" +#include "libpicofe/linux/fbdev.h" +#include "libpicofe/linux/xenv.h" #include "plugin_lib.h" #include "pl_gun_ts.h" #include "plat.h" @@ -52,8 +52,9 @@ static int omap_setup_layer_(int fd, int enabled, int x, int y, int w, int h) perror("SETUP_PLANE"); } - if (mi.size < 640*512*3*3) { - mi.size = 640*512*3*3; + // upto 1024x512 (2x resolution enhancement) + if (mi.size < 1024*512*2 * 3) { + mi.size = 1024*512*2 * 3; ret = ioctl(fd, OMAPFB_SETUP_MEM, &mi); if (ret != 0) { perror("SETUP_MEM"); @@ -98,7 +99,7 @@ void *plat_gvideo_set_mode(int *w, int *h, int *bpp) int l = 0, r = 0, t = 0, b = 0; void *buf; - if (g_scaler == SCALE_1_1) { + if (g_scaler == SCALE_1_1 || g_scaler == SCALE_2_2) { if (*w > g_menuscreen_w) l = r = (*w - g_menuscreen_w) / 2; if (*h > g_menuscreen_h)