[vlc-commits] Puzzle: increase the maximum size to 42x42
Jean-Baptiste Kempf
git at videolan.org
Tue Feb 14 17:16:20 CET 2017
vlc | branch: master | Jean-Baptiste Kempf <jb at videolan.org> | Tue Feb 14 17:15:32 2017 +0100| [c1ffaef40c02b2c6320aa6b73f9ab818bf60ea46] | committer: Jean-Baptiste Kempf
Puzzle: increase the maximum size to 42x42
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=c1ffaef40c02b2c6320aa6b73f9ab818bf60ea46
---
modules/video_filter/puzzle.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/modules/video_filter/puzzle.c b/modules/video_filter/puzzle.c
index 22b3b9f..c5cf986 100644
--- a/modules/video_filter/puzzle.c
+++ b/modules/video_filter/puzzle.c
@@ -88,9 +88,9 @@ vlc_module_begin()
set_category( CAT_VIDEO )
set_subcategory( SUBCAT_VIDEO_VFILTER )
- add_integer_with_range( CFG_PREFIX "rows", 4, 2, 16,
+ add_integer_with_range( CFG_PREFIX "rows", 4, 2, 42,
ROWS_TEXT, ROWS_LONGTEXT, false )
- add_integer_with_range( CFG_PREFIX "cols", 4, 2, 16,
+ add_integer_with_range( CFG_PREFIX "cols", 4, 2, 42,
COLS_TEXT, COLS_LONGTEXT, false )
add_integer_with_range( CFG_PREFIX "border", 3, 0, 40,
BORDER_TEXT, BORDER_LONGTEXT, false )
More information about the vlc-commits
mailing list