Skip to content

Commit

Permalink
Merge PR #6245: FIX(positional-audio): Fix Source Engine plugin not w…
Browse files Browse the repository at this point in the history
…orking on Windows
  • Loading branch information
davidebeatrici authored Oct 24, 2023
2 parents c21a90a + c912a41 commit 1adbe6d
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 1adbe6d

Please sign in to comment.