aboutsummaryrefslogtreecommitdiff
path: root/plugins/gpulib/vout_pl.c
diff options
context:
space:
mode:
authortwinaphex2013-02-09 10:05:21 +0100
committertwinaphex2013-02-09 10:05:21 +0100
commitad72cb33d8ef068b92a059a774dd7871d052a707 (patch)
treef8623af5beeb8939631acceb2acb505c9497f71c /plugins/gpulib/vout_pl.c
parent2dfdc938c99783e187f60c1d13db73e0ee434c92 (diff)
parentd57557c0644f9294e30657f0c7cf673cf2914695 (diff)
downloadpcsx_rearmed-ad72cb33d8ef068b92a059a774dd7871d052a707.tar.gz
pcsx_rearmed-ad72cb33d8ef068b92a059a774dd7871d052a707.tar.bz2
pcsx_rearmed-ad72cb33d8ef068b92a059a774dd7871d052a707.zip
Merge git://github.com/notaz/pcsx_rearmed
Diffstat (limited to 'plugins/gpulib/vout_pl.c')
-rw-r--r--plugins/gpulib/vout_pl.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/plugins/gpulib/vout_pl.c b/plugins/gpulib/vout_pl.c
index 5af0762..541b5e0 100644
--- a/plugins/gpulib/vout_pl.c
+++ b/plugins/gpulib/vout_pl.c
@@ -11,7 +11,6 @@
#include <string.h>
#include "gpu.h"
-#include "cspace.h"
#include "../../frontend/plugin_lib.h"
static const struct rearmed_cbs *cbs;
@@ -50,8 +49,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);
}
}