notaz.gp2x.de
/
libpicofe.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
d07718a
)
fix regression selecting SDL window size (for hw scaling)
author
kub
<derkub@gmail.com>
Sun, 6 Mar 2022 18:25:56 +0000
(18:25 +0000)
committer
kub
<derkub@gmail.com>
Sun, 6 Mar 2022 18:25:56 +0000
(18:25 +0000)
plat_sdl.c
patch
|
blob
|
blame
|
history
diff --git
a/plat_sdl.c
b/plat_sdl.c
index
a167a63
..
cae9490
100644
(file)
--- a/
plat_sdl.c
+++ b/
plat_sdl.c
@@
-126,8
+126,8
@@
int plat_sdl_change_video_mode(int w, int h, int force)
if (plat_target.vout_method == 0) {
Uint32 flags;
- int win_w = w
indow_w
;
- int win_h =
window_
h;
+ int win_w = w;
+ int win_h = h;
#if defined SDL_SURFACE_SW
flags = SDL_SWSURFACE;