Skip to content

Commit

Permalink
Merge branch 'graceful_exit' into graceful_exit_part2
Browse files Browse the repository at this point in the history
  • Loading branch information
sharkautarch committed Dec 11, 2024
2 parents 0f5789f + d95404e commit 117a80a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion src/backend.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ namespace gamescope
bool IBackend::Set( IBackend *pBackend )
{
if ( s_pBackend ) {
GetBackend()->IBackend::~IBackend();
static_cast<CBaseBackend*>(GetBackend())->CBaseBackend::~CBaseBackend();
}

if ( pBackend )
Expand Down
1 change: 1 addition & 0 deletions src/backend.h
Original file line number Diff line number Diff line change
Expand Up @@ -269,6 +269,7 @@ namespace gamescope
class CBaseBackend : public IBackend
{
public:
virtual ~CBaseBackend() {}
virtual INestedHints *GetNestedHints() override;

virtual bool HackTemporarySetDynamicRefresh( int nRefresh ) override { return false; }
Expand Down

0 comments on commit 117a80a

Please sign in to comment.