Skip to content

Commit

Permalink
tr2: add ability to skip fmvs with the action key
Browse files Browse the repository at this point in the history
Resolves #1650.
  • Loading branch information
rr- committed Nov 2, 2024
1 parent 94a2d2a commit 72909fe
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions docs/tr2/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
- added an items cheat key (#1641)
- added a level skip cheat key (#1640)
- added the ability to skip end credits with the action and escape keys (#1800)
- added the ability to skip FMVs with the action key (#1650)
- changed the inputs backend from DirectX to SDL (#1695)
- improved controller support to match TR1X
- changed the number of custom layouts to 3
Expand Down
2 changes: 1 addition & 1 deletion src/tr2/decomp/fmv.c
Original file line number Diff line number Diff line change
Expand Up @@ -364,7 +364,7 @@ void __cdecl WinPlayFMV(const char *const file_name, const bool is_playback)

Input_Update();
Shell_ProcessInput();
if (g_InputDB.option) {
if (g_InputDB.menu_back || g_InputDB.menu_confirm) {
Video_Stop(video);
break;
}
Expand Down

0 comments on commit 72909fe

Please sign in to comment.