From 493befdc432063207dc653ff49da645a567567ba Mon Sep 17 00:00:00 2001 From: "Dmitry D. Chernov" Date: Fri, 3 Nov 2023 01:23:25 +1000 Subject: [PATCH] Game: Fix invisibility not being full, which made players visible on some displays Bug report: https://doom2d.org/forum/viewtopic.php?f=36&t=3283 --- src/game/g_player.pas | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/game/g_player.pas b/src/game/g_player.pas index d0275d0..790d419 100644 --- a/src/game/g_player.pas +++ b/src/game/g_player.pas @@ -2630,7 +2630,7 @@ begin FModel.Draw(fX, fY+fSlope); end else - FModel.Draw(fX, fY+fSlope, 254); + FModel.Draw(fX, fY+fSlope, 255); end else FModel.Draw(fX, fY+fSlope); -- 2.29.2