diff options
author | Michael Roitzsch <mroi@users.sourceforge.net> | 2004-12-08 18:24:21 +0000 |
---|---|---|
committer | Michael Roitzsch <mroi@users.sourceforge.net> | 2004-12-08 18:24:21 +0000 |
commit | 2d2e74a4491ea1a8a8365d0a52309c56cbf3351c (patch) | |
tree | f55c9ae691a87c7588ee6977079def762508b1bb | |
parent | 0dada20308e01f91ceae43c0f4cac4f3cc815da8 (diff) | |
download | xine-lib-2d2e74a4491ea1a8a8365d0a52309c56cbf3351c.tar.gz xine-lib-2d2e74a4491ea1a8a8365d0a52309c56cbf3351c.tar.bz2 |
use the variable show here (it would be unused otherwise)
CVS patchset: 7206
CVS date: 2004/12/08 18:24:21
-rw-r--r-- | src/input/input_dvd.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/input/input_dvd.c b/src/input/input_dvd.c index f128f9229..e848710ef 100644 --- a/src/input/input_dvd.c +++ b/src/input/input_dvd.c @@ -18,7 +18,7 @@ * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA * - * $Id: input_dvd.c,v 1.192 2004/12/05 22:41:12 f1rmb Exp $ + * $Id: input_dvd.c,v 1.193 2004/12/08 18:24:21 mroi Exp $ * */ @@ -904,7 +904,7 @@ static void xine_dvd_send_button_update(dvd_input_plugin_t *this, int mode) { /* Do we want to show or hide the button? */ /* libspudec will control hiding */ show = mode + 1; /* mode=0 select, 1 activate. */ - this->stream->spu_decoder_plugin->set_button (this->stream->spu_decoder_plugin, button, mode + 1); + this->stream->spu_decoder_plugin->set_button (this->stream->spu_decoder_plugin, button, show); } static void dvd_handle_events(dvd_input_plugin_t *this) { |