diff --git a/CHANGELOG.md b/CHANGELOG.md index 0dcfda6c..b97eeea6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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: diff --git a/src/game/input.c b/src/game/input.c index 9925c790..bfff8ac9 100644 --- a/src/game/input.c +++ b/src/game/input.c @@ -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) {