diff options
author | Olivier Gayot <duskcoder@gmail.com> | 2015-01-07 12:49:13 +0100 |
---|---|---|
committer | Olivier Gayot <duskcoder@gmail.com> | 2015-01-07 12:49:13 +0100 |
commit | e984a172127c3d13ac85c29511c68784ca43984c (patch) | |
tree | 6d9dc661e091d9b229b6b42f627c05575b4128d7 /menuchoixpersos.c | |
parent | 40c476353b251cd2c423c8945480572b64381f44 (diff) |
game: converted source files from iso-8859 to UTF-8
Accents in the content of certain files made them react as binary files.
Fixed by converting them to Unicode.
Signed-off-by: Olivier Gayot <duskcoder@gmail.com>
Diffstat (limited to 'menuchoixpersos.c')
-rw-r--r-- | menuchoixpersos.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/menuchoixpersos.c b/menuchoixpersos.c index 2616e56..f1df0a1 100644 --- a/menuchoixpersos.c +++ b/menuchoixpersos.c @@ -31,9 +31,9 @@ void Fmenuchoixpersos (SURFACES *surfaces, POSITIONS *positions) if (Vnbperso == 0) surfaces->Ptextechoixmenu = TTF_RenderText_Blended (police,"Choisissez la Classe de votre Premier Personnage",vert); else if (Vnbperso == 1) - surfaces->Ptextechoixmenu = TTF_RenderText_Blended (police,"Choisissez la Classe de votre Deuxième Personnage",vert); + surfaces->Ptextechoixmenu = TTF_RenderText_Blended (police,"Choisissez la Classe de votre Deuxième Personnage",vert); else if (Vnbperso == 2) - surfaces->Ptextechoixmenu = TTF_RenderText_Blended (police,"Choisissez la Classe de votre Troisième Personnage",vert); + surfaces->Ptextechoixmenu = TTF_RenderText_Blended (police,"Choisissez la Classe de votre Troisième Personnage",vert); positions->Vpositiontextemenu.x=XWIN/2-surfaces->Ptextechoixmenu->w/2; if (persos[Vnbperso-1].classe == PALADIN) SDL_BlitSurface (surfaces->Pchoixpaladin,NULL,surfaces->Pecran,&positions->Vpositionmenu); @@ -128,7 +128,7 @@ void Fremplirpersos2 (SURFACES *surfaces, PERSONNAGES persos[]) if (persos[i].classe==PALADIN) surfaces->Tperso[i]=IMG_Load("images/paladin.bmp"); else if (persos[i].classe==PRETRE) - surfaces->Tperso[i]=IMG_Load("images/prêtre.bmp"); + surfaces->Tperso[i]=IMG_Load("images/prêtre.bmp"); else if (persos[i].classe==VOLEUR) surfaces->Tperso[i]=IMG_Load("images/voleur.bmp"); } |