From: Mark Wooding Date: Tue, 22 Mar 2022 21:29:51 +0000 (+0000) Subject: dvd-info.c: Don't forget to dump the last titleset. X-Git-Url: https://git.distorted.org.uk/~mdw/dvdrip/commitdiff_plain/568d66463019842bac5b2fb840570f4e445e05f3 dvd-info.c: Don't forget to dump the last titleset. --- diff --git a/dvd-info.c b/dvd-info.c index 7f8e8ae..dd6b708 100644 --- a/dvd-info.c +++ b/dvd-info.c @@ -189,7 +189,7 @@ int main(int argc, char *argv[]) printf(";;;--------------------------------------------------------------------------\n" ";;; Video management info\n\n"); ifo_print(dvd, 0); - for (j = 1; j < vmgi->vmgi_mat->vmg_nr_of_title_sets; j++) { + for (j = 1; j <= vmgi->vmgi_mat->vmg_nr_of_title_sets; j++) { printf("\n" ";;;--------------------------------------------------------------------------\n" ";;; Video titleset %d info\n\n", j);