Skip to content
This repository has been archived by the owner on Oct 4, 2024. It is now read-only.

Commit

Permalink
input: fix game exiting from console use in cutscenes
Browse files Browse the repository at this point in the history
  • Loading branch information
rr- committed Sep 26, 2024
1 parent fbf333d commit 652745b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
## [Unreleased](https://github.com/LostArtefacts/TR2X/compare/stable...develop) - ××××-××-××
- added `/sfx` command
- fixed crash in the `/set` console command (regression from 0.3)
- fixed using console in cutscenes immediately exiting the game (regression from 0.3)

## [0.3](https://github.com/LostArtefacts/TR2X/compare/0.2-460-g4721b93...0.3) - 2024-09-20
- added new console commands:
Expand Down
2 changes: 1 addition & 1 deletion src/game/input.c
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ bool Input_Update(void)
if (m_ListenMode) {
g_Input = 0;
g_InputDB = 0;
return true;
return result;
}

if (g_InputDB & IN_CONSOLE) {
Expand Down

0 comments on commit 652745b

Please sign in to comment.