Do not log unless g_extern.verbose is set.
This commit is contained in:
parent
b3d4044e09
commit
db0501fa50
|
@ -29,8 +29,11 @@
|
|||
} while (0)
|
||||
#else
|
||||
#define RARCH_LOG(...) do { \
|
||||
fprintf(stderr, "RetroArch: " __VA_ARGS__); \
|
||||
fflush(stderr); \
|
||||
if (g_extern.verbose) \
|
||||
{ \
|
||||
fprintf(stderr, "RetroArch: " __VA_ARGS__); \
|
||||
fflush(stderr); \
|
||||
} \
|
||||
} while (0)
|
||||
#endif
|
||||
#endif
|
||||
|
|
Loading…
Reference in New Issue