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.)
This commit is contained in:
redpolline 2024-12-21 09:46:21 -05:00
parent e2e21441c8
commit c5afbe9fea

View File

@ -359,7 +359,7 @@ public:
void SetNotificationInset(int nHorizontalInset, int nVerticalInset) {} void SetNotificationInset(int nHorizontalInset, int nVerticalInset) {}
void SetupOverlay() {} void SetupOverlay() {}
void UnSetupOverlay() {} void UnSetupOverlay() {}
bool RegisteredInternalCallbacks() {} bool RegisteredInternalCallbacks() const { return true; }
void HookReady(bool ready) {} void HookReady(bool ready) {}