From a5f8c4ead2b05d1ad870e82f73d701c1c0faa261 Mon Sep 17 00:00:00 2001 From: Randy Heit Date: Fri, 20 Feb 2015 21:51:14 -0600 Subject: [PATCH] Fixed: UDMF loader did not set the index for sides --- src/p_udmf.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/p_udmf.cpp b/src/p_udmf.cpp index 64e8605e7..f0fb79690 100644 --- a/src/p_udmf.cpp +++ b/src/p_udmf.cpp @@ -1103,6 +1103,7 @@ public: sdt->midtexture = "-"; sd->SetTextureXScale(FRACUNIT); sd->SetTextureYScale(FRACUNIT); + sd->Index = index; sc.MustGetToken('{'); while (!sc.CheckToken('}'))