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]; key = shiftxform[key];
} }
else else
{ {
if (shiftdown) if (shiftdown)
key = shiftxform[key]; key = shiftxform[key];
} }
// enter a char into the command prompt // enter a char into the command prompt
if (key < 32 || key > 127) if (key < 32 || key > 127)

View file

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

View file

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