if movielib isn't found in requested resolution, do NOT select other version, since the game is unable to determinate to switch correctly - instead skip playback in that case

This commit is contained in:
zicodxx 2007-05-11 09:23:47 +00:00
parent e03925096d
commit 5741e093c4
2 changed files with 4 additions and 6 deletions

View file

@ -1,5 +1,9 @@
D2X-Rebirth Changelog
20070511
--------
main/movie.c: if movielib isn't found in requested resolution, do NOT select other version, since the game is unable to determinate to switch correctly - instead skip playback in that case
20070510
--------
main/gameseq.c: moved load_palette() call in StartNewLevelSub() to show HOARD textures and bitmaps correctly in OGL

View file

@ -606,12 +606,6 @@ void init_movie(char *movielib, int required)
{
if (required)
con_printf(CON_URGENT, "Can't open movielib <%s>: %s\n", filename, PHYSFS_getLastError());
sprintf(filename, "%s-%s.mvl", movielib, MovieHires?"l":"h");
if (!cfile_init(filename))
if (required)
con_printf(CON_URGENT, "Can't open movielib <%s>: %s\n", filename, PHYSFS_getLastError());
}
}