From b2878dea3b017434e25b108dd6ce4e7ef5c4a7b4 Mon Sep 17 00:00:00 2001 From: Martin Gerhardy Date: Sun, 11 Jul 2021 13:56:19 +0200 Subject: [PATCH] GRAPHICS: removed invalid char from comment --- graphics/surface.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/graphics/surface.h b/graphics/surface.h index 66dfa4eee5f..514955cf8a9 100644 --- a/graphics/surface.h +++ b/graphics/surface.h @@ -428,7 +428,7 @@ public: * @param scale number of pixels per single character. Default is -1, fit whole surface to maxwidth * @param maxwidth horizontal size of the print out in characters. Default is 160. Note that 2 characters * are taken by the frame - * @param palette Ëšpalette to use for 1bpp pixels. If omitted, we assume grayscale palette + * @param palette palette to use for 1bpp pixels. If omitted, we assume grayscale palette * */ void debugPrint(int debuglevel = 0, int width = 0, int height = 0, int x = 0, int y = 0, int scale = -1, int maxwidth = 160, const byte *palette = NULL) const;