[vlc-devel] commit: Maemo: enable fullscreen by default (good res, but still small screen) ( Rémi Denis-Courmont )
git version control
git at videolan.org
Mon Oct 19 22:15:13 CEST 2009
vlc | branch: master | Rémi Denis-Courmont <remi at remlab.net> | Mon Oct 19 23:12:13 2009 +0300| [1ce334be560ab70488b7cdc9d8b9f64636d6d859] | committer: Rémi Denis-Courmont
Maemo: enable fullscreen by default (good res, but still small screen)
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=1ce334be560ab70488b7cdc9d8b9f64636d6d859
---
src/libvlc-module.c | 7 ++++++-
1 files changed, 6 insertions(+), 1 deletions(-)
diff --git a/src/libvlc-module.c b/src/libvlc-module.c
index caa86c9..459d51f 100644
--- a/src/libvlc-module.c
+++ b/src/libvlc-module.c
@@ -1593,7 +1593,12 @@ vlc_module_begin ()
change_safe ()
add_bool( "grayscale", 0, NULL, GRAYSCALE_TEXT,
GRAYSCALE_LONGTEXT, true )
- add_bool( "fullscreen", 0, NULL, FULLSCREEN_TEXT,
+#if defined (HAVE_MAEMO)
+# define FULLSCREEN_DEFAULT true
+#else
+# define FULLSCREEN_DEFAULT false
+#endif
+ add_bool( "fullscreen", FULLSCREEN_DEFAULT, NULL, FULLSCREEN_TEXT,
FULLSCREEN_LONGTEXT, false )
change_short('f')
change_safe ()
More information about the vlc-devel
mailing list