Updated version number to 99.0

Makefile: README.txt and a new COMPILING.txt are now added in win32 and src packages.
Updated NSIS script to 99.0 version.
Cleaned up the list of error codes and error messages.
Removed a debug print.


git-svn-id: svn://pulkomandy.tk/GrafX2/trunk@724 416bcca6-2ee7-4201-b75f-2eb2f807beb1
This commit is contained in:
Yves Rizoud
2009-04-05 23:38:11 +00:00
parent 6c0637f65e
commit 31756d2ee5
7 changed files with 167 additions and 49 deletions

View File

@@ -53,14 +53,14 @@ void Set_mode_SDL(int *width, int *height, int fullscreen)
// Vérification du mode obtenu (ce n'est pas toujours celui demandé)
if (Screen_SDL->w != *width || Screen_SDL->h != *height)
{
DEBUG("Error mode video obtenu différent de celui demandé !!",0);
DEBUG("Error: Got a different video mode than the requested one!",0);
*width = Screen_SDL->w;
*height = Screen_SDL->h;
}
Screen_pixels=Screen_SDL->pixels;
}
else
DEBUG("Error changement de mode video !!",0);
DEBUG("Error: Unable to change video mode!",0);
SDL_ShowCursor(0); // Cache le curseur SDL, on le gère en soft
}