mirror of
https://github.com/libretro/RetroArch.git
synced 2025-04-02 10:51:52 -04:00
Show if python is compiled in or not.
This commit is contained in:
parent
884e2881a0
commit
f62120861a
2 changed files with 7 additions and 0 deletions
|
@ -128,4 +128,10 @@ static const bool _netplay_supp = true;
|
|||
static const bool _netplay_supp = false;
|
||||
#endif
|
||||
|
||||
#ifdef HAVE_PYTHON
|
||||
static const bool _python_supp = true;
|
||||
#else
|
||||
static const bool _python_supp = false;
|
||||
#endif
|
||||
|
||||
#endif
|
||||
|
|
1
ssnes.c
1
ssnes.c
|
@ -363,6 +363,7 @@ static void print_features(void)
|
|||
_PSUPP(configfile, "Config file", "Configuration file support");
|
||||
_PSUPP(freetype, "FreeType", "TTF font rendering with FreeType");
|
||||
_PSUPP(netplay, "Netplay", "Peer-to-peer netplay");
|
||||
_PSUPP(python, "Python", "Script support in shaders");
|
||||
}
|
||||
#undef _PSUPP
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue