Commit deae7810 authored by Derk-Jan Hartman's avatar Derk-Jan Hartman

* Show value of boolean variable options when printing the list for an input.

parent 3edd27b7
...@@ -1980,7 +1980,7 @@ static void ParseOption( input_thread_t *p_input, const char *psz_option ) ...@@ -1980,7 +1980,7 @@ static void ParseOption( input_thread_t *p_input, const char *psz_option )
var_Set( p_input, psz_name, val ); var_Set( p_input, psz_name, val );
msg_Dbg( p_input, "set input option: %s to %s", psz_name, psz_value ); msg_Dbg( p_input, "set input option: %s to %s", psz_name, psz_value ? psz_value : ( val.b_bool ? "true" : "false") );
cleanup: cleanup:
if( psz_name ) free( psz_name ); if( psz_name ) free( psz_name );
......
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