diff options
author | notaz | 2013-02-05 00:42:51 +0200 |
---|---|---|
committer | notaz | 2013-02-05 00:42:51 +0200 |
commit | 468072a17a20bf584df17f14e329441eebf66776 (patch) | |
tree | d4d9205c414862ff32efec04faf4acbcdf1b69d4 /plugins | |
parent | 69e482e3def6669a4fa921d07f9ba04883d7de34 (diff) | |
download | pcsx_rearmed-468072a17a20bf584df17f14e329441eebf66776.tar.gz pcsx_rearmed-468072a17a20bf584df17f14e329441eebf66776.tar.bz2 pcsx_rearmed-468072a17a20bf584df17f14e329441eebf66776.zip |
frontend: do all bpp handling in plugin_lib
Diffstat (limited to 'plugins')
-rw-r--r-- | plugins/gpulib/vout_pl.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/plugins/gpulib/vout_pl.c b/plugins/gpulib/vout_pl.c index 5af0762..7f031fe 100644 --- a/plugins/gpulib/vout_pl.c +++ b/plugins/gpulib/vout_pl.c @@ -50,8 +50,7 @@ static void check_mode_change(int force) old_status = gpu.status.reg; old_h = h; - cbs->pl_vout_set_mode(w_out, h_out, w, h, - (gpu.status.rgb24 && !cbs->only_16bpp) ? 24 : 16); + cbs->pl_vout_set_mode(w_out, h_out, w, h, gpu.status.rgb24 ? 24 : 16); } } |