mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2025-10-30 08:01:28 +00:00
cleanup whitespace
This commit is contained in:
parent
3d3b4d183f
commit
4ffe5d0670
1 changed files with 2 additions and 2 deletions
|
|
@ -10524,7 +10524,7 @@ static void M_HandleConnectIP(INT32 choice)
|
|||
case 'V': // ctrl+v, pasting
|
||||
{
|
||||
const char *paste = I_ClipboardPaste();
|
||||
|
||||
|
||||
if (paste != NULL) {
|
||||
strncat(setupm_ip, paste, 28-1 - l); // Concat the ip field with clipboard
|
||||
if (strlen(paste) != 0) // Don't play sound if nothing was pasted
|
||||
|
|
@ -10558,7 +10558,7 @@ static void M_HandleConnectIP(INT32 choice)
|
|||
case KEY_INS: // shift+insert, pasting
|
||||
{
|
||||
const char *paste = I_ClipboardPaste();
|
||||
|
||||
|
||||
if (paste != NULL) {
|
||||
strncat(setupm_ip, paste, 28-1 - l); // Concat the ip field with clipboard
|
||||
if (strlen(paste) != 0) // Don't play sound if nothing was pasted
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue