notaz.gp2x.de
/
pcsx_rearmed.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
02783d0
)
frontend: remove res check
author
notaz
<notasas@gmail.com>
Tue, 27 Nov 2012 01:07:44 +0000
(
03:07
+0200)
committer
notaz
<notasas@gmail.com>
Wed, 28 Nov 2012 16:49:33 +0000
(18:49 +0200)
it's already done at the upper level, and this was wrong anyway
because plat_gvideo_set_mode can change vout_w and vout_h
frontend/plugin_lib.c
patch
|
blob
|
blame
|
history
diff --git
a/frontend/plugin_lib.c
b/frontend/plugin_lib.c
index
400e9ff
..
73ddc82
100644
(file)
--- a/
frontend/plugin_lib.c
+++ b/
frontend/plugin_lib.c
@@
-257,10
+257,6
@@
static void pl_vout_set_mode(int w, int h, int raw_w, int raw_h, int bpp)
}
#endif
- if (pl_vout_buf != NULL && vout_w == pl_vout_w && vout_h == pl_vout_h
- && vout_bpp == pl_vout_bpp)
- return;
-
update_layer_size(vout_w, vout_h);
pl_vout_buf = plat_gvideo_set_mode(&vout_w, &vout_h, &vout_bpp);