mirror of
https://git.do.srb2.org/KartKrew/Kart-Public.git
synced 2024-12-26 04:11:18 +00:00
Merge branch 'master' into next
This commit is contained in:
commit
a70faeccff
2 changed files with 6 additions and 3 deletions
|
@ -2468,7 +2468,7 @@ static boolean CL_ServerConnectionTicker(const char *tmpsave, tic_t *oldtic, tic
|
|||
|
||||
key = I_GetKey();
|
||||
// Only ESC and non-keyboard keys abort connection
|
||||
if (key == KEY_ESCAPE || key >= KEY_MOUSE1 || cl_mode == CL_ABORTED)
|
||||
if (!modeattacking && (key == KEY_ESCAPE || key >= KEY_MOUSE1 || cl_mode == CL_ABORTED))
|
||||
{
|
||||
CONS_Printf(M_GetText("Network game synchronization aborted.\n"));
|
||||
D_QuitNetGame();
|
||||
|
|
|
@ -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,6 +392,9 @@ static inline void ST_Stop(void)
|
|||
if (st_stopped)
|
||||
return;
|
||||
|
||||
#ifdef HWRENDER
|
||||
if (rendermode != render_opengl)
|
||||
#endif
|
||||
V_SetPalette(0);
|
||||
|
||||
st_stopped = true;
|
||||
|
|
Loading…
Reference in a new issue