From 556ec932fba97536253402afddcef203176ab292 Mon Sep 17 00:00:00 2001 From: "beaumanvienna (JC)" Date: Mon, 29 Jun 2020 08:15:59 -0700 Subject: [PATCH] logging: x64 boot message changed No longer says x86-64 breaks recompilers --- pcsx2/System.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pcsx2/System.cpp b/pcsx2/System.cpp index e3e499fa62..37246ca2e5 100644 --- a/pcsx2/System.cpp +++ b/pcsx2/System.cpp @@ -262,7 +262,7 @@ void SysLogMachineCaps() Console.WriteLn( Color_StrongBlack, L"x86 Features Detected:" ); Console.Indent().WriteLn(result[0] + (result[1].IsEmpty() ? L"" : (L"\n" + result[1]))); #ifdef __M_X86_64 - Console.Indent().WriteLn("Pcsx2 was compiled as 64-bits, which is unsupported and breaks all recompilers."); + Console.Indent().WriteLn("Pcsx2 was compiled as 64-bits."); #endif Console.Newline();