Skip to content

Commit

Permalink
Merge pull request #85 from skitt/lower-case-movies
Browse files Browse the repository at this point in the history
Allow lower-cased movies
  • Loading branch information
bibendovsky committed Dec 27, 2017
2 parents cc30af1 + 7648c23 commit 3d0e6df
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 5 deletions.
4 changes: 0 additions & 4 deletions src/jm_free.cpp
Expand Up @@ -705,10 +705,6 @@ void CheckForEpisodes()

::extension = ::get_file_extension(::g_game_type);

for (int i = 0; i < mv_NUM_MOVIES; ++i) {
::movies[i].file_name += ::extension;
}

if (::is_aog_full()) {
for (int i = 1; i < 6; ++i) {
::NewEmenu[i].active = AT_ENABLED;
Expand Down
2 changes: 1 addition & 1 deletion src/movie.cpp
Expand Up @@ -498,7 +498,7 @@ bool MOVIE_Play(
// Start the anim process
//

Movie_FHandle.open(::data_dir + MovieStuff->file_name);
::ca_open_resource(MovieStuff->file_name, Movie_FHandle);
if (!Movie_FHandle.is_open()) {
return false;
}
Expand Down

0 comments on commit 3d0e6df

Please sign in to comment.