From 87113ec10dbf6cb477e12898bbd29da3697f344f Mon Sep 17 00:00:00 2001 From: jsancho Date: Tue, 27 Dec 2011 20:28:27 +0000 Subject: [PATCH] Using utf8. --- src/sdl.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/sdl.c b/src/sdl.c index b46a552..0f96fb8 100644 --- a/src/sdl.c +++ b/src/sdl.c @@ -274,8 +274,8 @@ gacela_SDL_GetVideoInfo (void) info = SDL_GetVideoInfo (); vi = scm_list_n (SCM_UNDEFINED); - vi = scm_cons (scm_cons (scm_from_locale_symbol ("blit_hw"), scm_from_int (info->blit_hw)), vi); - vi = scm_cons (scm_cons (scm_from_locale_symbol ("hw_available"), scm_from_int (info->hw_available)), vi); + vi = scm_cons (scm_cons (scm_from_utf8_symbol ("blit_hw"), scm_from_int (info->blit_hw)), vi); + vi = scm_cons (scm_cons (scm_from_utf8_symbol ("hw_available"), scm_from_int (info->hw_available)), vi); return vi; } -- 2.39.2