From: DeaDDooMER Date: Wed, 27 Sep 2023 09:50:17 +0000 (+0300) Subject: options: remove space from default nickname X-Git-Url: http://deadsoftware.ru/gitweb?p=d2df-sdl.git;a=commitdiff_plain;h=e1f115c17f5d486849c6c113ca0ea19e3eb2a2cc options: remove space from default nickname --- diff --git a/src/game/g_options.pas b/src/game/g_options.pas index 93e9199..23bb91b 100644 --- a/src/game/g_options.pas +++ b/src/game/g_options.pas @@ -100,7 +100,7 @@ uses if Result = '' then Result := 'Player' + IntToStr(machine MOD 10000); if n = 1 then - Result := Copy(Result, 1, 12) + ' ' + Result := Copy(Result, 1, 12) else Result := Copy(Result, 1, 10) + ' ' + IntToStr(n) end;