From 755de405c214a7977cdd72209613f0959c3b9f86 Mon Sep 17 00:00:00 2001 From: terminx Date: Mon, 12 Aug 2019 03:15:25 +0000 Subject: [PATCH] Add automapping var to Gv_RefreshPointers() git-svn-id: https://svn.eduke32.com/eduke32@7953 1a8010ca-5511-0410-912e-c29ae57300e0 --- source/duke3d/src/gamevars.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/source/duke3d/src/gamevars.cpp b/source/duke3d/src/gamevars.cpp index 539475809..9c2e466f9 100644 --- a/source/duke3d/src/gamevars.cpp +++ b/source/duke3d/src/gamevars.cpp @@ -1413,6 +1413,7 @@ void Gv_RefreshPointers(void) aGameVars[Gv_GetVarIndex("RESPAWN_MONSTERS")].global = (intptr_t)&ud.respawn_monsters; aGameVars[Gv_GetVarIndex("VOLUME")].global = (intptr_t)&ud.volume_number; + aGameVars[Gv_GetVarIndex("automapping")].global = (intptr_t)&automapping; aGameVars[Gv_GetVarIndex("cameraang")].global = (intptr_t)&ud.cameraq16ang; // XXX FIXME aGameVars[Gv_GetVarIndex("cameraclock")].global = (intptr_t)&g_cameraClock; aGameVars[Gv_GetVarIndex("cameradist")].global = (intptr_t)&g_cameraDistance;