From 723d76c8ecf2c091aafe3305d8b7e42e3ae2c707 Mon Sep 17 00:00:00 2001 From: Sam Lantinga Date: Sun, 8 Nov 2020 23:34:59 -0800 Subject: [PATCH] Fixed bug 5333 - Replace character of legacy code page with utf-8 one. Joel Linn This patch fixes a MSVC warning, which is dependent on the regional settings of the build system. Although the character is inside a comment and harmless, it is undesirable to disable the warning for this. --- src/video/SDL_RLEaccel.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/video/SDL_RLEaccel.c b/src/video/SDL_RLEaccel.c index c9b84e32b..d04b94ed3 100644 --- a/src/video/SDL_RLEaccel.c +++ b/src/video/SDL_RLEaccel.c @@ -27,7 +27,7 @@ * * Original version by Sam Lantinga * - * Mattias Engdegård (Yorick): Rewrite. New encoding format, encoder and + * Mattias EngdegÃ¥rd (Yorick): Rewrite. New encoding format, encoder and * decoder. Added per-surface alpha blitter. Added per-pixel alpha * format, encoder and blitter. *