Browse Source
[core] fix boost_v1 define
Signed-off-by: crueter <crueter@eden-emu.dev>
pull/266/head
crueter
7 months ago
No known key found for this signature in database
GPG Key ID: 425ACD2D4830EBC6
1 changed files with
1 additions and
1 deletions
-
src/core/debugger/debugger.cpp
|
|
|
@ -7,7 +7,7 @@ |
|
|
|
#include <boost/asio.hpp>
|
|
|
|
#include <boost/version.hpp>
|
|
|
|
|
|
|
|
#if BOOST_VERSION > 108300 && (!defined(_WINDOWS) || defined(YUZU_BOOST_v1)) && (!defined(ANDROID) || defined(YUZU_BOOST_v1))
|
|
|
|
#if BOOST_VERSION > 108300 && (!defined(_WINDOWS) && !defined(ANDROID)) || defined(YUZU_BOOST_v1)
|
|
|
|
#define USE_BOOST_v1
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|