From cd9cda08a23cf5d8c448e53e9e05296702cb39e6 Mon Sep 17 00:00:00 2001 From: twinaphex Date: Wed, 17 Jan 2018 19:30:01 +0100 Subject: [PATCH] Update and fix API error --- verbosity.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/verbosity.c b/verbosity.c index 5a898e0f84..4f3548af97 100644 --- a/verbosity.c +++ b/verbosity.c @@ -228,11 +228,11 @@ void RARCH_WARN(const char *fmt, ...) void RARCH_ERR(const char *fmt, ...) { va_list ap; - va_start(ap, fmt); if (!verbosity_is_enabled()) return; + va_start(ap, fmt); RARCH_ERR_V(file_path_str(FILE_PATH_LOG_ERROR), fmt, ap); va_end(ap); }