From 78ae2222ed4c5e5fc6650bcd8801bbc9f44fa7f5 Mon Sep 17 00:00:00 2001 From: Dentomologist Date: Tue, 26 Nov 2024 11:49:53 -0800 Subject: [PATCH] Dummy Commit This commit will prevent Github from automerging this PR if the other changes in this testing branch are merged in a different PR. --- Source/Core/DolphinQt/Main.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Source/Core/DolphinQt/Main.cpp b/Source/Core/DolphinQt/Main.cpp index 88400aa1a6..d3316e1507 100644 --- a/Source/Core/DolphinQt/Main.cpp +++ b/Source/Core/DolphinQt/Main.cpp @@ -116,6 +116,9 @@ static bool QtMsgAlertHandler(const char* caption, const char* text, bool yes_no int main(int argc, char* argv[]) { + // IF THIS COMMENT IS IN A NON-TESTING PR I'VE MADE A MISTAKE. It exists to prevent my testing PR + // from getting automerged by Github if its contents would be the same as a merged actual PR. + #ifdef _WIN32 const bool console_attached = AttachConsole(ATTACH_PARENT_PROCESS) != FALSE; HANDLE stdout_handle = ::GetStdHandle(STD_OUTPUT_HANDLE);