mirror of
https://git.do.srb2.org/KartKrew/Kart-Public.git
synced 2024-11-10 07:12:03 +00:00
Fix unnecessary texture reloads on respawn in opengl by removing unneeded V_SetPalette calls
This commit is contained in:
parent
0241b73dbe
commit
dbf744845d
1 changed files with 5 additions and 2 deletions
|
@ -232,7 +232,7 @@ void ST_doPaletteStuff(void)
|
|||
{
|
||||
st_palette = palette;
|
||||
|
||||
if (rendermode != render_none)
|
||||
if (rendermode == render_soft)
|
||||
{
|
||||
//V_SetPaletteLump(GetPalette()); // Reset the palette -- is this needed?
|
||||
if (!splitscreen)
|
||||
|
@ -392,7 +392,10 @@ static inline void ST_Stop(void)
|
|||
if (st_stopped)
|
||||
return;
|
||||
|
||||
V_SetPalette(0);
|
||||
#ifdef HWRENDER
|
||||
if (rendermode != render_opengl)
|
||||
#endif
|
||||
V_SetPalette(0);
|
||||
|
||||
st_stopped = true;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue