mirror of
https://github.com/CTCaer/RetroArch.git
synced 2025-01-27 06:11:51 +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;
|
||||
#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)
|
||||
|
Loading…
x
Reference in New Issue
Block a user