From 079ed17722e6d5b38c9c602555b0cdea11b0ac45 Mon Sep 17 00:00:00 2001 From: Colin Kinloch Date: Sun, 29 Jun 2025 18:09:06 +0100 Subject: [PATCH] Include wx button header Testing with wx 3.3 `wxButton` was giving an incomplete type error. I assume previously one of the other headers included it. --- src/gui/GettingStartedDialog.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/gui/GettingStartedDialog.cpp b/src/gui/GettingStartedDialog.cpp index 22426cf2..b613c38c 100644 --- a/src/gui/GettingStartedDialog.cpp +++ b/src/gui/GettingStartedDialog.cpp @@ -5,6 +5,7 @@ #include #include #include +#include #include "config/ActiveSettings.h" #include "gui/CemuApp.h"