notaz.gp2x.de
/
picodrive.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
8969374
)
platform, disable fullscreen for systems without WM
author
kub
<derkub@gmail.com>
Fri, 28 Feb 2025 10:01:03 +0000
(11:01 +0100)
committer
kub
<derkub@gmail.com>
Fri, 28 Feb 2025 10:01:03 +0000
(11:01 +0100)
platform/linux/menu.c
patch
|
blob
|
blame
|
history
diff --git
a/platform/linux/menu.c
b/platform/linux/menu.c
index
f7007cc
..
802c170
100644
(file)
--- a/
platform/linux/menu.c
+++ b/
platform/linux/menu.c
@@
-50,7
+50,8
@@
static menu_entry e_menu_keyconfig[], e_menu_gfx_options[];
void linux_menu_init(void)
{
- me_enable(e_menu_gfx_options, MA_OPT_VOUT_SIZE, plat_sdl_is_windowed());
+ me_enable(e_menu_gfx_options, MA_OPT_VOUT_SIZE, plat_has_wm());
+ me_enable(e_menu_gfx_options, MA_OPT_VOUT_FULL, plat_has_wm());
me_enable(e_menu_keyconfig, MA_CTRL_DEADZONE, 0);
}