Show SDL/SDL_image/SDL_ttf versions in statistics

This commit is contained in:
Thomas BERNARD
2018-11-27 15:51:27 +01:00
committed by Thomas Bernard
parent f9a854f513
commit 4204960333
2 changed files with 52 additions and 9 deletions

View File

@@ -429,10 +429,10 @@ void Init_text(void)
// Informe si texte.c a été compilé avec l'option de support TrueType ou pas.
int TrueType_is_supported()
{
#ifdef NOTTF
return 0;
#else
#if !defined(NOTTF) || defined(WIN32)
return 1;
#else
return 0;
#endif
}