mirror of
https://github.com/libretro/RetroArch.git
synced 2025-01-18 15:01:07 +00:00
Show if python is compiled in or not.
This commit is contained in:
parent
884e2881a0
commit
f62120861a
@ -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…
x
Reference in New Issue
Block a user