set the window caption to something useful
git-svn-id: svn://pulkomandy.tk/GrafX2/trunk@192 416bcca6-2ee7-4201-b75f-2eb2f807beb1
This commit is contained in:
parent
eaa35aa9c7
commit
5a2f86a4d6
2
gfx2.ini
2
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
|
||||
|
||||
1
main.c
1
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();
|
||||
|
||||
2
moteur.c
2
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;
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user