From 14867933aa8c815af35763030015a74cb494c273 Mon Sep 17 00:00:00 2001 From: havoc Date: Sun, 18 Apr 2010 06:35:20 +0000 Subject: [PATCH] allow saving multiplayer games from the menu, rather than refusing git-svn-id: svn://svn.icculus.org/twilight/trunk/darkplaces@10096 d7cf8633-e32d-0410-b094-e92efae38249 --- menu.c | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/menu.c b/menu.c index 5958dcbf..444fc0c5 100644 --- a/menu.c +++ b/menu.c @@ -867,10 +867,16 @@ void M_Menu_Save_f (void) { if (!sv.active) return; +#if 1 + // LordHavoc: allow saving multiplayer games + if (cl.islocalgame && cl.intermission) + return; +#else if (cl.intermission) return; if (!cl.islocalgame) return; +#endif m_entersound = true; m_state = m_save; key_dest = key_menu; -- 2.39.2