From 67e92e047fe62d1115902a24f02f9a940bb0cfd3 Mon Sep 17 00:00:00 2001 From: Nikhil Narayana Date: Sun, 15 Oct 2023 11:14:05 -0700 Subject: [PATCH] chore: don't show nkit warning nkit doesn't have issues with our netplay method --- Source/Core/Core/Config/MainSettings.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/Core/Core/Config/MainSettings.cpp b/Source/Core/Core/Config/MainSettings.cpp index 382e13fa5e..e89ff67e2c 100644 --- a/Source/Core/Core/Config/MainSettings.cpp +++ b/Source/Core/Core/Config/MainSettings.cpp @@ -419,7 +419,7 @@ const Info MAIN_USE_HIGH_CONTRAST_TOOLTIPS{ const Info MAIN_USE_PANIC_HANDLERS{{System::Main, "Interface", "UsePanicHandlers"}, false}; const Info MAIN_ABORT_ON_PANIC_ALERT{{System::Main, "Interface", "AbortOnPanicAlert"}, false}; const Info MAIN_OSD_MESSAGES{{System::Main, "Interface", "OnScreenDisplayMessages"}, true}; -const Info MAIN_SKIP_NKIT_WARNING{{System::Main, "Interface", "SkipNKitWarning"}, false}; +const Info MAIN_SKIP_NKIT_WARNING{{System::Main, "Interface", "SkipNKitWarning"}, true}; const Info MAIN_CONFIRM_ON_STOP{{System::Main, "Interface", "ConfirmStop"}, false}; const Info MAIN_SHOW_CURSOR{{System::Main, "Interface", "CursorVisibility"}, ShowCursor::OnMovement};