retro_log.h - hacky but necessary to get it to work

This commit is contained in:
twinaphex 2015-11-23 11:05:19 +01:00
parent f1edf1210c
commit 62a556e8ce

View File

@ -65,17 +65,14 @@ FILE *retro_main_log_file(void);
#define PROGRAM_NAME "N/A"
#endif
#ifdef RARCH_INTERNAL
#include "../../runloop.h"
#endif
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)