From e3afdde981a5aff2d885ce40fe96ffebf5d9001f Mon Sep 17 00:00:00 2001 From: refractionpcsx2 Date: Tue, 4 Mar 2025 13:28:06 +0000 Subject: [PATCH] GSDumpRunner: Fix compilation --- pcsx2-gsrunner/Main.cpp | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/pcsx2-gsrunner/Main.cpp b/pcsx2-gsrunner/Main.cpp index 6eab3217cc..b1d4497c6a 100644 --- a/pcsx2-gsrunner/Main.cpp +++ b/pcsx2-gsrunner/Main.cpp @@ -169,6 +169,12 @@ void Host::SetDefaultUISettings(SettingsInterface& si) // nothing } +bool Host::LocaleCircleConfirm() +{ + // not running any UI, so no settings requests will come in + return false; +} + std::unique_ptr Host::CreateHostProgressCallback() { return ProgressCallback::CreateNullProgressCallback();