mirror of
https://github.com/libretro/RetroArch
synced 2025-02-02 05:54:16 +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;
|
static const bool _netplay_supp = false;
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
#ifdef HAVE_PYTHON
|
||||||
|
static const bool _python_supp = true;
|
||||||
|
#else
|
||||||
|
static const bool _python_supp = false;
|
||||||
|
#endif
|
||||||
|
|
||||||
#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(configfile, "Config file", "Configuration file support");
|
||||||
_PSUPP(freetype, "FreeType", "TTF font rendering with FreeType");
|
_PSUPP(freetype, "FreeType", "TTF font rendering with FreeType");
|
||||||
_PSUPP(netplay, "Netplay", "Peer-to-peer netplay");
|
_PSUPP(netplay, "Netplay", "Peer-to-peer netplay");
|
||||||
|
_PSUPP(python, "Python", "Script support in shaders");
|
||||||
}
|
}
|
||||||
#undef _PSUPP
|
#undef _PSUPP
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user