From 0d43753ff2e02f54dd35e6872be3dafa14d2ea7d Mon Sep 17 00:00:00 2001 From: Jacob Nevins Date: Fri, 16 Dec 2022 11:17:29 +0000 Subject: [PATCH] Remove _() introduced from Android port. Introduced in cbf2ede64a. It's used there for marking up text for i18n in a gettext stylee, but is not available here. --- lightup.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lightup.c b/lightup.c index d3b4b50..3f0237a 100644 --- a/lightup.c +++ b/lightup.c @@ -354,7 +354,7 @@ static const char *validate_params(const game_params *params, bool full) return "4-fold symmetry is only available with square grids"; } if ((params->symm == SYMM_ROT4 || params->symm == SYMM_REF4) && params->w < 3 && params->h < 3) - return _("Width or height must be at least 3 for 4-way symmetry"); + return "Width or height must be at least 3 for 4-way symmetry"; if (params->symm < 0 || params->symm >= SYMM_MAX) return "Unknown symmetry type"; if (params->difficulty < 0 || params->difficulty > DIFFCOUNT)