diff --git a/gfx2.cfg b/gfx2.cfg index 539c8f77..a9412093 100644 Binary files a/gfx2.cfg and b/gfx2.cfg differ diff --git a/gfx2.ini b/gfx2.ini index 20c09284..6d386988 100644 --- a/gfx2.ini +++ b/gfx2.ini @@ -129,7 +129,7 @@ ; aspect ratio, but if the picture | essayer de corriger les proportions, ; does not fill the whole screen, | mais si l'image ne prend pas tout ; it can be worse. | l'écran, cela peut être pire. - Maximize_preview = no ; (default 'no') + Maximize_preview = yes ; (default 'no') ; This option is used to place the | Cette option est utilisée pour placer ; selection bar on a filename by | la barre de sélection sur un nom de diff --git a/main.c b/main.c index 9aa1f311..372bfb99 100644 --- a/main.c +++ b/main.c @@ -380,6 +380,7 @@ void Initialisation_du_programme(int argc,char * argv[]) SDL_Init(SDL_INIT_TIMER|SDL_INIT_VIDEO); SDL_EnableKeyRepeat(250, 32); SDL_EnableUNICODE(SDL_ENABLE); + SDL_WM_SetCaption("GrafX2 beta 97.0% - USE AT YOUR OWN RISK","grafx2.gif"); // On initialise tous les modes vidéo Definition_des_modes_video(); diff --git a/moteur.c b/moteur.c index 88ce7e3a..3a281399 100644 --- a/moteur.c +++ b/moteur.c @@ -444,6 +444,8 @@ void Gestion_principale(void) // Redimensionnement demandé if (Resize_Largeur || Resize_Hauteur) { + if(Resize_Largeur<320) Resize_Largeur =320; + if(Resize_Hauteur<200) Resize_Hauteur = 200; Effacer_curseur(); Initialiser_mode_video(Resize_Largeur, Resize_Hauteur, 0); Mode_video[0].Largeur = Largeur_ecran;