mirror of
https://git.do.srb2.org/KartKrew/Kart-Public.git
synced 2025-02-04 15:31:05 +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];
|
||||
}
|
||||
else
|
||||
{
|
||||
{
|
||||
if (shiftdown)
|
||||
key = shiftxform[key];
|
||||
}
|
||||
}
|
||||
|
||||
// enter a char into the command prompt
|
||||
if (key < 32 || key > 127)
|
||||
|
|
|
@ -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;
|
||||
|
|
|
@ -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)
|
||||
|
|
Loading…
Reference in a new issue