RARCH_LOG_V checking for verbosity level is not necessary and can cause

issues; removed said check.
This commit is contained in:
Michael Burgardt 2021-03-31 17:57:22 +02:00
parent e3ee0ac22b
commit f54098618e

View File

@ -214,8 +214,6 @@ void retro_main_log_file_deinit(void)
void RARCH_LOG_V(const char *tag, const char *fmt, va_list ap)
{
verbosity_state_t *g_verbosity = &main_verbosity_st;
if (verbosity_log_level > 1)
return;
{
const char *tag_v = tag ? tag : FILE_PATH_LOG_INFO;