From d239aab42a5a0661af0056f7f01e95a7f05bd757 Mon Sep 17 00:00:00 2001 From: Holger Schemel Date: Wed, 21 Oct 2020 01:14:02 +0200 Subject: [PATCH] fixed default player names on name selection screen --- src/files.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/files.c b/src/files.c index bb08277e..b2a6fb5c 100644 --- a/src/files.c +++ b/src/files.c @@ -9673,7 +9673,7 @@ void LoadUserNames(void) } if (global.user_names[i] == NULL) - global.user_names[i] = getStringCopy(EMPTY_PLAYER_NAME); + global.user_names[i] = getStringCopy(getDefaultUserName(i)); } user.nr = last_user_nr; -- 2.34.1