From c5afbe9feac0853d6b4fffa5bb264fceda5f4e74 Mon Sep 17 00:00:00 2001 From: redpolline <11156324-redpolline@users.noreply.gitlab.com> Date: Sat, 21 Dec 2024 09:46:21 -0500 Subject: [PATCH] Return a val when EMU_OVERLAY isn't defined. Steam_Overlay::RegisteredInternalCallbacks must return a value when EMU_OVERLAY isn't defined. (lobby_connect build.) --- overlay_experimental/steam_overlay.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/overlay_experimental/steam_overlay.h b/overlay_experimental/steam_overlay.h index 721a8c1..13fc581 100644 --- a/overlay_experimental/steam_overlay.h +++ b/overlay_experimental/steam_overlay.h @@ -359,7 +359,7 @@ public: void SetNotificationInset(int nHorizontalInset, int nVerticalInset) {} void SetupOverlay() {} void UnSetupOverlay() {} - bool RegisteredInternalCallbacks() {} + bool RegisteredInternalCallbacks() const { return true; } void HookReady(bool ready) {}