From a12159f2b6ae5c4550789878c5a70173eaed5357 Mon Sep 17 00:00:00 2001 From: Tillmann Karras Date: Sun, 10 May 2020 05:34:47 +0100 Subject: [PATCH] DSPTool: fix build --- Source/DSPTool/StubHost.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Source/DSPTool/StubHost.cpp b/Source/DSPTool/StubHost.cpp index 488a49d2cd..b9393f1656 100644 --- a/Source/DSPTool/StubHost.cpp +++ b/Source/DSPTool/StubHost.cpp @@ -18,10 +18,6 @@ void Host_RefreshDSPDebuggerWindow() void Host_Message(HostMessageID) { } -void* Host_GetRenderHandle() -{ - return nullptr; -} void Host_UpdateTitle(const std::string&) { } @@ -48,3 +44,7 @@ void Host_YieldToUI() void Host_TitleChanged() { } +bool Host_UIBlocksControllerState() +{ + return false; +}