From 4fc2ac44be96fa08cb008baaeb5025f03c26f2ad Mon Sep 17 00:00:00 2001 From: Daniel Scharrer Date: Sat, 7 Jul 2018 00:51:56 +0200 Subject: [PATCH] ArxGame: Always allow quickloading Fixes: issue #1224 --- src/core/ArxGame.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/core/ArxGame.cpp b/src/core/ArxGame.cpp index 743f0e8d86..708c934886 100644 --- a/src/core/ArxGame.cpp +++ b/src/core/ArxGame.cpp @@ -1258,15 +1258,15 @@ void ArxGame::doFrame() { g_saveToLoad.clear(); } + if(GInput->actionNowPressed(CONTROLS_CUST_QUICKLOAD)) { + ARX_QuickLoad(); + } + if(cinematicIsStopped() && !cinematicBorder.isActive() && !BLOCK_PLAYER_CONTROLS ) { - if(GInput->actionNowPressed(CONTROLS_CUST_QUICKLOAD)) { - ARX_QuickLoad(); - } - if(GInput->actionNowPressed(CONTROLS_CUST_QUICKSAVE) && ARXmenu.mode() == Mode_InGame) { g_hudRoot.quickSaveIconGui.show(); GRenderer->getSnapshot(savegame_thumbnail, config.interface.thumbnailSize.x, config.interface.thumbnailSize.y);