From b9090a25b2008e12e3460da2c4f8ac2883d05708 Mon Sep 17 00:00:00 2001 From: Henrik Rydgard Date: Sun, 5 Jul 2015 20:04:14 +0200 Subject: [PATCH] Reduce logspam in Burnout --- Core/HLE/sceSas.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Core/HLE/sceSas.cpp b/Core/HLE/sceSas.cpp index 0b4b51aad3..00c1594618 100644 --- a/Core/HLE/sceSas.cpp +++ b/Core/HLE/sceSas.cpp @@ -481,7 +481,7 @@ static u32 sceSasRevParam(u32 core, int delay, int feedback) { static u32 sceSasRevEVOL(u32 core, u32 lv, u32 rv) { if (lv > 0x1000 || rv > 0x1000) { - WARN_LOG_REPORT(SCESAS, "sceSasRevEVOL(%08x, %i, %i): invalid volume", core, lv, rv); + DEBUG_LOG_REPORT(SCESAS, "sceSasRevEVOL(%08x, %i, %i): invalid volume", core, lv, rv); return ERROR_SAS_REV_INVALID_VOLUME; } DEBUG_LOG(SCESAS, "sceSasRevEVOL(%08x, %i, %i)", core, lv, rv);