From b7fbf28e517ba8690875cb5c0a0f445c67710ecb Mon Sep 17 00:00:00 2001 From: Jonathan Date: Wed, 27 Apr 2022 14:57:40 -0400 Subject: [PATCH] fix .wal loading (Again...) --- qbsp/map.cc | 3 +++ 1 file changed, 3 insertions(+) diff --git a/qbsp/map.cc b/qbsp/map.cc index 5048298d..ac51e3d7 100644 --- a/qbsp/map.cc +++ b/qbsp/map.cc @@ -1360,6 +1360,9 @@ static void ParseTextureDef(parser_t &parser, mapface_t &mapface, const mapbrush if (!extinfo.info) { extinfo.info = extended_texinfo_t{}; } + extinfo.info->value = wal->value; + extinfo.info->flags = wal->flags; + extinfo.info->contents = wal->contents; extinfo.info->animation = wal->animation; } }