Skip to content

Commit

Permalink
ArxGame: Always allow quickloading
Browse files Browse the repository at this point in the history
Fixes: issue #1224
  • Loading branch information
dscharrer committed Jul 7, 2018
1 parent a69474e commit 4fc2ac4
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/core/ArxGame.cpp
Expand Up @@ -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);
Expand Down

0 comments on commit 4fc2ac4

Please sign in to comment.