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 23, 2023
1 parent c21a90a commit c912a41
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions 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;

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

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

0 comments on commit c912a41

Please sign in to comment.