Commit 8e95f585 authored by Jean-Baptiste Kempf's avatar Jean-Baptiste Kempf

Small fix for DVD menus.

parent ee285661
...@@ -383,7 +383,10 @@ void InputManager::sectionNext() ...@@ -383,7 +383,10 @@ void InputManager::sectionNext()
void InputManager::sectionMenu() void InputManager::sectionMenu()
{ {
if( hasInput() ) if( hasInput() )
var_SetInteger( p_input, "title 0", 2 ); {
vlc_value_t val; val.i_int = 2;
var_Set( p_input, "title 0", val );
}
} }
#ifdef ZVBI_COMPILED #ifdef ZVBI_COMPILED
......
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