mirror of
https://git.do.srb2.org/KartKrew/Kart-Public.git
synced 2025-02-09 17:51:17 +00:00
forgot whitespaces....
This commit is contained in:
parent
e9767df4ff
commit
477400020d
3 changed files with 6 additions and 6 deletions
|
@ -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)
|
||||||
|
|
|
@ -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;
|
||||||
|
|
|
@ -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)
|
||||||
|
|
Loading…
Reference in a new issue