Skip to content

Commit

Permalink
FIX(positional-audio): Fix Source Engine plugin not working on Windows
Browse files Browse the repository at this point in the history
The bug was introduced in 13cbf72.

It was only reported last year and because of a side effect: consistent lag for the entire application.
That's something that should be dealt with independently.
  • Loading branch information
davidebeatrici committed Oct 22, 2023
1 parent c21a90a commit 555de98
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion plugins/se/se.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,11 @@

std::unique_ptr< ProcessBase > proc;

static bool isWin32 = false;
#ifdef OS_WINDOWS
static constexpr bool isWin32 = true;
#else
static bool isWin32;
#endif

#include "client.h"
#include "common.h"
Expand Down

0 comments on commit 555de98

Please sign in to comment.