logging: x64 boot message changed

No longer says x86-64 breaks recompilers
This commit is contained in:
beaumanvienna (JC) 2020-06-29 08:15:59 -07:00 committed by tellowkrinkle
parent 310648fb88
commit 556ec932fb
1 changed files with 1 additions and 1 deletions

View File

@ -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();