From 0a5cdea62a82011e14053708845bb16b1baa9c05 Mon Sep 17 00:00:00 2001 From: terminx Date: Fri, 9 Aug 2019 09:28:30 +0000 Subject: [PATCH] Run savegame events as myconnectindex instead of screenpeek This doesn't really matter right now, but it's wrong. git-svn-id: https://svn.eduke32.com/eduke32@7934 1a8010ca-5511-0410-912e-c29ae57300e0 --- source/duke3d/src/savegame.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/source/duke3d/src/savegame.cpp b/source/duke3d/src/savegame.cpp index 4acd24074..880ed8b04 100644 --- a/source/duke3d/src/savegame.cpp +++ b/source/duke3d/src/savegame.cpp @@ -820,7 +820,7 @@ int32_t G_SavePlayer(savebrief_t & sv, bool isAutoSave) polymer_resetlights(); #endif - VM_OnEvent(EVENT_SAVEGAME, g_player[screenpeek].ps->i, screenpeek); + VM_OnEvent(EVENT_SAVEGAME, g_player[myconnectindex].ps->i, myconnectindex); portableBackupSave(sv.path, sv.name, ud.last_stateless_volume, ud.last_stateless_level); @@ -847,7 +847,7 @@ int32_t G_SavePlayer(savebrief_t & sv, bool isAutoSave) G_RestoreTimers(); ototalclock = totalclock; - VM_OnEvent(EVENT_POSTSAVEGAME, g_player[screenpeek].ps->i, screenpeek); + VM_OnEvent(EVENT_POSTSAVEGAME, g_player[myconnectindex].ps->i, myconnectindex); return 0;