From 5842ff98d8a75d65cf709c8daa2624119e3a15f6 Mon Sep 17 00:00:00 2001 From: diligentcircle Date: Fri, 17 Sep 2021 22:07:37 -0400 Subject: [PATCH] Renamed Super-Easy difficulty to Assisted difficulty. "Super-Easy" isn't a particularly problematic name, but "Assisted" is more descriptive of what the difficulty mode is for (to assist players who have trouble playing on easy mode). --- src/game.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/game.c b/src/game.c index 291e582..46d6cc5 100644 --- a/src/game.c +++ b/src/game.c @@ -2495,8 +2495,8 @@ void game_getDifficultyText(char *dest, int difficulty) switch (difficulty) { case DIFFICULTY_SUPEREASY: - /// DIFFICULTY_SUPEREASY - strcpy(dest, _("Super-Easy")); + /// DIFFICULTY_SUPEREASY (Assisted) + strcpy(dest, _("Assisted")); break; case DIFFICULTY_EASY: /// DIFFICULTY_EASY