From 5e88afe9788259df99f0d264831955a898c2cf12 Mon Sep 17 00:00:00 2001 From: "Avi Halachmi (:avih)" Date: Sun, 22 Feb 2015 16:52:59 +0200 Subject: [PATCH] patches: print the actual patch lines only in verbose mode --- pcsx2/Patch.cpp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/pcsx2/Patch.cpp b/pcsx2/Patch.cpp index 81f1360215..281774f7c2 100644 --- a/pcsx2/Patch.cpp +++ b/pcsx2/Patch.cpp @@ -312,7 +312,9 @@ namespace PatchFunc // (translated) messages for display in a popup window then we'll have to upgrade the // exception a little bit. - PatchesCon->WriteLn(cmd + L" " + param); + // print the actual patch lines only in verbose mode (even in devel) + if (DevConWriterEnabled) + DevCon.WriteLn(cmd + L" " + param); try {