From e68e67f161a34cc57c1a6e690eceb6e74edfa9d0 Mon Sep 17 00:00:00 2001 From: Connor McLaughlin Date: Sat, 11 Jan 2020 13:29:22 +1000 Subject: [PATCH] SDL: Fix log spam in Release builds --- src/duckstation/main.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/duckstation/main.cpp b/src/duckstation/main.cpp index 9d42438ac..f670da553 100644 --- a/src/duckstation/main.cpp +++ b/src/duckstation/main.cpp @@ -58,7 +58,7 @@ static int Run(int argc, char* argv[]) int main(int argc, char* argv[]) { // set log flags -#ifdef Y_BUILD_CONFIG_RELEASE +#ifndef _DEBUG const LOGLEVEL level = LOGLEVEL_INFO; // const LOGLEVEL level = LOGLEVEL_DEV; // const LOGLEVEL level = LOGLEVEL_PROFILE;