Add extern "C" around retro_main_verbosity

This commit is contained in:
twinaphex 2015-11-23 10:50:15 +01:00
parent e02fdd5b5b
commit ecddeef016

View File

@ -70,7 +70,12 @@ static INLINE bool RARCH_LOG_VERBOSE(void)
{
bool *verbose = NULL;
#ifdef RARCH_INTERNAL
#ifdef __cplusplus
extern "C" bool *retro_main_verbosity(void);
#else
extern bool *retro_main_verbosity(void);
#endif
verbose = retro_main_verbosity();
#endif
if (!verbose)