From 9e00c6ffde79dd688e190ebab6016a5cdffb73a0 Mon Sep 17 00:00:00 2001 From: Eidolon Date: Sat, 14 Oct 2023 15:24:18 -0500 Subject: [PATCH] Only render HWR player view if literally in opengl --- src/d_main.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/d_main.cpp b/src/d_main.cpp index af7b7d9a3..05a818b06 100644 --- a/src/d_main.cpp +++ b/src/d_main.cpp @@ -541,7 +541,7 @@ static void D_Display(void) viewssnum = i; #ifdef HWRENDER - if (rendermode != render_soft) + if (rendermode == render_opengl) HWR_RenderPlayerView(); else #endif