| 339 | } |
| 340 | |
| 341 | static void reset_subtitle(void) |
| 342 | { |
| 343 | struct subtitle_list *pos, *tmp; |
| 344 | |
| 345 | for (pos = subtitles; pos != NULL; pos = tmp) { |
| 346 | tmp = pos->next; |
| 347 | free(pos); |
| 348 | } |
| 349 | subtitles = NULL; |
| 350 | set_dialog_subtitles(subtitles); |
| 351 | } |
| 352 | |
| 353 | static int show_textbox_ext(const char *title, const char *text, int r, int c, |
| 354 | int *vscroll, int *hscroll, |
no test coverage detected