Cleaned up the layout of Save/Load screen. (issue 92, issue 84#4)

git-svn-id: svn://pulkomandy.tk/GrafX2/trunk@696 416bcca6-2ee7-4201-b75f-2eb2f807beb1
This commit is contained in:
Yves Rizoud
2009-03-27 02:56:01 +00:00
parent fa71dea18d
commit 6b4a8f674e
9 changed files with 125 additions and 152 deletions

16
input.c
View File

@@ -152,22 +152,6 @@ int Move_cursor_with_constraints()
return feedback;
}
// Fonction qui filtre les evenements génériques.
void Gere_Evenement_SDL(SDL_Event * event)
{
// Redimensionnement fenetre
if (event->type == SDL_VIDEORESIZE )
{
Handle_Window_Resize(event->resize);
}
// Fermeture
if (event->type == SDL_QUIT )
{
Handle_Window_Exit(event->quit);
}
}
// WM events management
void Handle_Window_Resize(SDL_ResizeEvent event)