summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/strife/m_menu.c7
1 files changed, 6 insertions, 1 deletions
diff --git a/src/strife/m_menu.c b/src/strife/m_menu.c
index 20b56ff2..6426232f 100644
--- a/src/strife/m_menu.c
+++ b/src/strife/m_menu.c
@@ -741,7 +741,12 @@ void M_DoSave(int slot)
sendsave = 1;
G_WriteSaveName(slot, savegamestrings[slot]);
M_ClearMenus(0);
- quickSaveSlot = slot;
+ quickSaveSlot = slot;
+ // haleyjd 20130922: slight divergence. We clear the destination slot
+ // of files here, which vanilla did not do. As a result, 1.31 had
+ // broken save behavior to the point of unusability. fraggle agrees
+ // this is detrimental enough to be fixed - unconditionally, for now.
+ ClearSlot();
FromCurr();
}
else