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:
4904809
)
fix missed double resolution change
author
notaz
<notasas@gmail.com>
Thu, 6 Jul 2023 20:55:43 +0000
(23:55 +0300)
committer
notaz
<notasas@gmail.com>
Thu, 6 Jul 2023 20:55:43 +0000
(23:55 +0300)
plugins/gpulib/vout_pl.c
patch
|
blob
|
blame
|
history
diff --git
a/plugins/gpulib/vout_pl.c
b/plugins/gpulib/vout_pl.c
index
1c98b55
..
46af259
100644
(file)
--- a/
plugins/gpulib/vout_pl.c
+++ b/
plugins/gpulib/vout_pl.c
@@
-44,10
+44,10
@@
static void check_mode_change(int force)
}
// width|rgb24 change?
- if (force || (gpu.status ^ old_status) & ((7<<16)|(1<<21)) || h != old_h)
+ if (force || (gpu.status ^ old_status) & ((7<<16)|(1<<21)) || h
_out
!= old_h)
{
old_status = gpu.status;
- old_h = h;
+ old_h = h
_out
;
cbs->pl_vout_set_mode(w_out, h_out, w, h,
(gpu.status & PSX_GPU_STATUS_RGB24) ? 24 : 16);