From: Dmitry D. Chernov Date: Thu, 2 Nov 2023 15:23:25 +0000 (+1000) Subject: Game: Fix invisibility not being full, which made players visible on some displays X-Git-Url: http://deadsoftware.ru/gitweb?p=d2df-sdl.git;a=commitdiff_plain;h=493befdc432063207dc653ff49da645a567567ba 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 --- 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);