diff options
author | Michael Roitzsch <mroi@users.sourceforge.net> | 2003-04-07 16:51:29 +0000 |
---|---|---|
committer | Michael Roitzsch <mroi@users.sourceforge.net> | 2003-04-07 16:51:29 +0000 |
commit | afeaddf8ae91d1e0d27a12b15035a0952ce1680f (patch) | |
tree | 168203ae5e134569425e37cd2225f06983645d2b | |
parent | f8e17af0784064e99c6caf1c4d173a0855cff2ec (diff) | |
download | xine-lib-afeaddf8ae91d1e0d27a12b15035a0952ce1680f.tar.gz xine-lib-afeaddf8ae91d1e0d27a12b15035a0952ce1680f.tar.bz2 |
output beautification
CVS patchset: 4562
CVS date: 2003/04/07 16:51:29
-rw-r--r-- | src/input/input_dvd.c | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/src/input/input_dvd.c b/src/input/input_dvd.c index 6206a1bc7..e8f8a8e78 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.147 2003/04/06 23:44:59 guenter Exp $ + * $Id: input_dvd.c,v 1.148 2003/04/07 16:51:29 mroi Exp $ * */ @@ -327,12 +327,12 @@ void update_title_display(dvd_input_plugin_t *this) { "Title %i, Chapter %i", tt,pr); } - } else if (tt == 0) { + } else if (tt == 0 && dvdnav_menu_table[pr]) { snprintf(this->ui_title, MAX_STR_LEN, "DVD %s Menu", dvdnav_menu_table[pr]); } else { - strcpy(this->ui_title, "DVD Navigator: Menu"); + strcpy(this->ui_title, "DVD Menu"); } ui_str_length = strlen(this->ui_title); @@ -1576,6 +1576,9 @@ static void *init_class (xine_t *xine, void *data) { /* * $Log: input_dvd.c,v $ + * Revision 1.148 2003/04/07 16:51:29 mroi + * output beautification + * * Revision 1.147 2003/04/06 23:44:59 guenter * some more dvd error reporting * |