From cb652ad1479822e2762618436a4c2e6b33beb1d7 Mon Sep 17 00:00:00 2001 From: Christoph Oelckers Date: Sun, 26 Jan 2020 11:47:40 +0100 Subject: [PATCH] - use Pal_2D for Duke's title screen. This has transparent overlays so it must not disable translucency. --- source/duke3d/src/network.cpp | 2 +- source/duke3d/src/screens.cpp | 2 +- source/rr/src/net.cpp | 2 +- source/rr/src/screens.cpp | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/source/duke3d/src/network.cpp b/source/duke3d/src/network.cpp index caf2bcf5d..4fd27e0be 100644 --- a/source/duke3d/src/network.cpp +++ b/source/duke3d/src/network.cpp @@ -4694,7 +4694,7 @@ void Net_WaitForServer(void) if (numplayers < 2 || g_netServer) return; - P_SetGamePalette(g_player[myconnectindex].ps, TITLEPAL, Pal_Fullscreen); + P_SetGamePalette(g_player[myconnectindex].ps, TITLEPAL, Pal_2D); do { diff --git a/source/duke3d/src/screens.cpp b/source/duke3d/src/screens.cpp index d9047e441..fc9ef491b 100644 --- a/source/duke3d/src/screens.cpp +++ b/source/duke3d/src/screens.cpp @@ -1206,7 +1206,7 @@ void gameDisplayTitleScreen(void) videoClearScreen(0); // g_player[myconnectindex].ps->palette = titlepal; - P_SetGamePalette(g_player[myconnectindex].ps, TITLEPAL, Pal_Fullscreen); // JBF 20040308 + P_SetGamePalette(g_player[myconnectindex].ps, TITLEPAL, Pal_2D); // JBF 20040308 renderFlushPerms(); rotatesprite_fs(160 << 16, 100 << 16, 65536L, 0, BETASCREEN, 0, 0, 2 + 8 + 64 + BGSTRETCH); inputState.keyFlushChars(); diff --git a/source/rr/src/net.cpp b/source/rr/src/net.cpp index b0b9176e7..034174232 100644 --- a/source/rr/src/net.cpp +++ b/source/rr/src/net.cpp @@ -164,7 +164,7 @@ void Net_WaitForEverybody(void) } - P_SetGamePalette(g_player[myconnectindex].ps, TITLEPAL, Pal_Fullscreen); + P_SetGamePalette(g_player[myconnectindex].ps, TITLEPAL, Pal_2D); do { diff --git a/source/rr/src/screens.cpp b/source/rr/src/screens.cpp index 051e16334..f08033783 100644 --- a/source/rr/src/screens.cpp +++ b/source/rr/src/screens.cpp @@ -1297,7 +1297,7 @@ void G_DisplayLogo(void) videoClearScreen(0); //g_player[myconnectindex].ps->palette = titlepal; - P_SetGamePalette(g_player[myconnectindex].ps, TITLEPAL, Pal_Fullscreen); // JBF 20040308 + P_SetGamePalette(g_player[myconnectindex].ps, TITLEPAL, Pal_2D); // JBF 20040308 renderFlushPerms(); rotatesprite_fs(160<<16, 100<<16, 65536L, 0, BETASCREEN, 0, 0, 2+8+64+BGSTRETCH); inputState.keyFlushChars();