From 7ce23fdf52f521b460e3a3522f353ee2431a3b88 Mon Sep 17 00:00:00 2001 From: krzys-h Date: Fri, 17 Jun 2016 22:39:45 +0200 Subject: [PATCH] Do not rotate after changing autosave settings See https://github.com/colobot/colobot/pull/789#discussion_r67570610 --- src/level/robotmain.cpp | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/level/robotmain.cpp b/src/level/robotmain.cpp index 8019786b..760d1d5d 100644 --- a/src/level/robotmain.cpp +++ b/src/level/robotmain.cpp @@ -5457,7 +5457,6 @@ void CRobotMain::SetAutosave(bool enable) m_autosave = enable; m_autosaveLast = m_gameTimeAbsolute; - AutosaveRotate(); } bool CRobotMain::GetAutosave() @@ -5483,7 +5482,6 @@ void CRobotMain::SetAutosaveSlots(int slots) if (m_autosaveSlots == slots) return; m_autosaveSlots = slots; - AutosaveRotate(); } int CRobotMain::GetAutosaveSlots()