diff --git a/Doxyfile b/Doxyfile index e791f89f..ad374f7e 100644 --- a/Doxyfile +++ b/Doxyfile @@ -607,7 +607,8 @@ EXCLUDE_SYMLINKS = NO # against the file with absolute path, so to exclude all test directories # for example use the pattern */test/* -EXCLUDE_PATTERNS = +EXCLUDE_PATTERNS = SDLMain.* +EXCLUDE_PATTERNS += *.py # The EXCLUDE_SYMBOLS tag can be used to specify one or more symbol names # (namespaces, classes, functions, etc.) that should be excluded from the diff --git a/global.h b/global.h index bf1a9ded..03cdbc9b 100644 --- a/global.h +++ b/global.h @@ -48,14 +48,14 @@ GFX2_GLOBAL T_Config Config; GFX2_GLOBAL word Config_Touche[NB_TOUCHES_SPECIALES][2]; -typedef struct T_Video_mode +typedef struct { short Width; short Height; byte Mode; word Fullscreen; byte Etat; // 0:Cool 1:OK ; 2:Bof ; 3:Naze ; si on rajoute +128 => incompatible -}; +} T_Video_mode; GFX2_GLOBAL T_Video_mode Mode_video[MAX_MODES_VIDEO]; GFX2_GLOBAL int Nb_modes_video; // Nombre de modes réellement recensés dans Mode_video[]