diff options
author | Bardur Arantsson <bardur@scientician.net> | 2016-02-05 19:22:46 +0100 |
---|---|---|
committer | Bardur Arantsson <bardur@scientician.net> | 2016-02-05 19:22:46 +0100 |
commit | 55de8a9e74778af190a944c9fe0805f07aaa9980 (patch) | |
tree | 339e42939c1e376fc5c6a43b24bc347e7def2e66 /src | |
parent | b1a9e6028d66a47a5205225401db312c929b089c (diff) |
Remove #ifdef WINDOWS hack
Diffstat (limited to 'src')
-rw-r--r-- | src/files.cc | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/src/files.cc b/src/files.cc index 64112efa..aa63c462 100644 --- a/src/files.cc +++ b/src/files.cc @@ -3759,13 +3759,6 @@ void process_player_name(bool_ sf) } -#if defined(WINDOWS) - - /* Hack -- max length */ - if (k > 8) k = 8; - -#endif - /* Terminate */ tmp[k] = '\0'; sprintf(player_base, "%s", tmp); |