config file SAVINg is also endian-aware now.

git-svn-id: svn://pulkomandy.tk/GrafX2/trunk@38 416bcca6-2ee7-4201-b75f-2eb2f807beb1
This commit is contained in:
Adrien Destugues
2007-10-31 22:18:48 +00:00
parent 3b9e12b53c
commit d3b41bb251
3 changed files with 70 additions and 16 deletions

View File

@@ -72,7 +72,13 @@ void Set_palette(T_Palette Palette)
void Attendre_fin_de_click(void)
{
puts("Attendre_fin_de_click non implémenté!\n");
do
{
SDL_PumpEvents();
puts("Attente fin clic...");
}
while(SDL_GetMouseState(NULL, NULL)&(SDL_BUTTON(1) | SDL_BUTTON(2) | SDL_BUTTON(3))); //On attend tant que l'un des trois boutons est enfoncé
Mouse_K=0;
}
void Effacer_image_courante_Stencil(byte Couleur, byte * Pochoir)