Commit 1ce334be authored by Rémi Denis-Courmont's avatar Rémi Denis-Courmont

Maemo: enable fullscreen by default (good res, but still small screen)

parent b8d39d75
...@@ -1593,7 +1593,12 @@ vlc_module_begin () ...@@ -1593,7 +1593,12 @@ vlc_module_begin ()
change_safe () change_safe ()
add_bool( "grayscale", 0, NULL, GRAYSCALE_TEXT, add_bool( "grayscale", 0, NULL, GRAYSCALE_TEXT,
GRAYSCALE_LONGTEXT, true ) 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 ) FULLSCREEN_LONGTEXT, false )
change_short('f') change_short('f')
change_safe () change_safe ()
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment