From 8dedcf94d3d8a2137bb09bbb66f9f30945748961 Mon Sep 17 00:00:00 2001 From: Christoph Oelckers Date: Tue, 4 Jan 2022 16:36:05 +0100 Subject: [PATCH] - Duke: removed special precaching for sky texture Due to precomposition these single tiles will never be rendered anyway. --- source/games/duke/src/premap_d.cpp | 5 ----- source/games/duke/src/premap_r.cpp | 5 ----- 2 files changed, 10 deletions(-) diff --git a/source/games/duke/src/premap_d.cpp b/source/games/duke/src/premap_d.cpp index 87b805768..a530fe4e1 100644 --- a/source/games/duke/src/premap_d.cpp +++ b/source/games/duke/src/premap_d.cpp @@ -247,11 +247,6 @@ void cacheit_d(void) { tloadtile(sect.floorpicnum, sect.floorpal); tloadtile(sect.ceilingpicnum, sect.ceilingpal); - if (sect.ceilingpicnum == LA) - { - tloadtile(LA + 1); - tloadtile(LA + 2); - } DukeSectIterator it(§); while (auto act = it.Next()) diff --git a/source/games/duke/src/premap_r.cpp b/source/games/duke/src/premap_r.cpp index 262686cc5..4eb8ace54 100644 --- a/source/games/duke/src/premap_r.cpp +++ b/source/games/duke/src/premap_r.cpp @@ -385,11 +385,6 @@ void cacheit_r(void) { tloadtile(sect.floorpicnum, sect.floorpal); tloadtile(sect.ceilingpicnum, sect.ceilingpal); - if (sect.ceilingpicnum == LA) - { - tloadtile(LA + 1); - tloadtile(LA + 2); - } DukeSectIterator it(§); while (auto act = it.Next())