diff options
Diffstat (limited to 'extrecmenu.c')
-rw-r--r-- | extrecmenu.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/extrecmenu.c b/extrecmenu.c index c37ea64..01388b5 100644 --- a/extrecmenu.c +++ b/extrecmenu.c @@ -1,6 +1,5 @@ /* * See the README file for copyright information and how to reach the author. - * */ #include "mymenusetup.h" @@ -88,7 +87,10 @@ bool cPluginExtrecmenu::SetupParse(const char *Name, const char *Value) if(!strcasecmp(Name,"SortRecords")) mysetup.SortRecords=atoi(Value); else - return false; + if(!strcasecmp(Name,"JumpRec")) + mysetup.JumpRec=atoi(Value); + else + return false; return true; } |