mirror of
https://github.com/libretro/RetroArch
synced 2025-04-02 07:20:34 +00:00
Add extern "C" around retro_main_verbosity
This commit is contained in:
parent
e02fdd5b5b
commit
ecddeef016
@ -70,7 +70,12 @@ static INLINE bool RARCH_LOG_VERBOSE(void)
|
|||||||
{
|
{
|
||||||
bool *verbose = NULL;
|
bool *verbose = NULL;
|
||||||
#ifdef RARCH_INTERNAL
|
#ifdef RARCH_INTERNAL
|
||||||
|
#ifdef __cplusplus
|
||||||
|
extern "C" bool *retro_main_verbosity(void);
|
||||||
|
#else
|
||||||
extern bool *retro_main_verbosity(void);
|
extern bool *retro_main_verbosity(void);
|
||||||
|
#endif
|
||||||
|
|
||||||
verbose = retro_main_verbosity();
|
verbose = retro_main_verbosity();
|
||||||
#endif
|
#endif
|
||||||
if (!verbose)
|
if (!verbose)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user