forgot whitespaces....

This commit is contained in:
Latapostrophe 2018-11-17 22:23:23 +01:00
parent e9767df4ff
commit 477400020d
3 changed files with 6 additions and 6 deletions

View file

@ -1105,10 +1105,10 @@ boolean CON_Responder(event_t *ev)
key = shiftxform[key];
}
else
{
{
if (shiftdown)
key = shiftxform[key];
}
}
// enter a char into the command prompt
if (key < 32 || key > 127)

View file

@ -3605,7 +3605,7 @@ void G_NextLevel(void)
forceresetplayers = false;
deferencoremode = (boolean)cv_kartencore.value;
}
gameaction = ga_worlddone;
}
@ -5708,7 +5708,7 @@ void G_DeferedPlayDemo(const char *name)
//
// Start a demo from a .LMP file or from a wad resource
//
#define SKIPERRORS
#define SKIPERRORS
void G_DoPlayDemo(char *defdemoname)
{
UINT8 i;

View file

@ -1129,10 +1129,10 @@ boolean HU_Responder(event_t *ev)
c = shiftxform[c];
}
else // if we're holding shift we should still shift non letter symbols
{
{
if (shiftdown)
c = shiftxform[c];
}
}
// pasting. pasting is cool. chat is a bit limited, though :(
if (((c == 'v' || c == 'V') && ctrldown) && !CHAT_MUTE)