From c80b01cfdadd87aa2f910d9e5825e89b90d470c9 Mon Sep 17 00:00:00 2001 From: pogokeen Date: Wed, 7 Aug 2019 16:46:52 +0000 Subject: [PATCH] gameexec.cpp: allow G_ShowView() to execute regardless of the state of g_screenCapture. This fixes skyboxes not rendering in TILE_SAVESHOT. git-svn-id: https://svn.eduke32.com/eduke32@7893 1a8010ca-5511-0410-912e-c29ae57300e0 --- source/duke3d/src/gameexec.cpp | 3 --- 1 file changed, 3 deletions(-) diff --git a/source/duke3d/src/gameexec.cpp b/source/duke3d/src/gameexec.cpp index fd0398d00..20daba2cb 100644 --- a/source/duke3d/src/gameexec.cpp +++ b/source/duke3d/src/gameexec.cpp @@ -1172,9 +1172,6 @@ int G_StartTrack(int const levelNum) { return G_StartTrackSlot(ud.volume_number, LUNATIC_EXTERN void G_ShowView(vec3_t vec, fix16_t a, fix16_t horiz, int sect, int ix1, int iy1, int ix2, int iy2, bool unbiasedp) { - if (g_screenCapture) - return; - int x1 = min(ix1, ix2); int x2 = max(ix1, ix2); int y1 = min(iy1, iy2);