mirror of
https://github.com/CTCaer/RetroArch.git
synced 2025-02-24 05:31:15 +00:00
Do not log unless g_extern.verbose is set.
This commit is contained in:
parent
b3d4044e09
commit
db0501fa50
@ -29,8 +29,11 @@
|
|||||||
} while (0)
|
} while (0)
|
||||||
#else
|
#else
|
||||||
#define RARCH_LOG(...) do { \
|
#define RARCH_LOG(...) do { \
|
||||||
fprintf(stderr, "RetroArch: " __VA_ARGS__); \
|
if (g_extern.verbose) \
|
||||||
fflush(stderr); \
|
{ \
|
||||||
|
fprintf(stderr, "RetroArch: " __VA_ARGS__); \
|
||||||
|
fflush(stderr); \
|
||||||
|
} \
|
||||||
} while (0)
|
} while (0)
|
||||||
#endif
|
#endif
|
||||||
#endif
|
#endif
|
||||||
|
Loading…
x
Reference in New Issue
Block a user