X-Git-Url: https://notaz.gp2x.de/cgi-bin/gitweb.cgi?p=pcsx_rearmed.git;a=blobdiff_plain;f=frontend%2Fplat_omap.c;h=b01c634360e4196607243e63fca75e01972f6da9;hp=b8ab19ba326cc94a6647994812b8a5631f852c24;hb=f6edea0ca83c3c415fa338e3c2d9e1f3d99cc228;hpb=6645608833266df41ce8e07eacc3b18b77fe9e0e diff --git a/frontend/plat_omap.c b/frontend/plat_omap.c index b8ab19ba..b01c6343 100644 --- a/frontend/plat_omap.c +++ b/frontend/plat_omap.c @@ -95,10 +95,19 @@ void plat_omap_gvideo_open(void) 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 (*w > g_menuscreen_w) + l = r = (*w - g_menuscreen_w) / 2; + if (*h > g_menuscreen_h) + t = b = (*h - g_menuscreen_h) / 2; + } + vout_fbdev_clear(layer_fb); - buf = vout_fbdev_resize(layer_fb, *w, *h, *bpp, 0, 0, 0, 0, 3); + buf = vout_fbdev_resize(layer_fb, *w, *h, *bpp, + l, r, t, b, 3); omap_enable_layer(1);