mirror of
https://github.com/FWGS/hlsdk-xash3d
synced 2024-11-21 17:36:18 +01:00
client: fix GoldSrc input being enabled for Android on x86
This commit is contained in:
parent
e12d1aa743
commit
8f5c36dc62
@ -1,4 +1,7 @@
|
||||
#pragma once
|
||||
|
||||
#include "build.h"
|
||||
|
||||
#if !defined(INPUT_MOUSE_H)
|
||||
#define INPUT_MOUSE_H
|
||||
#include "cl_dll.h"
|
||||
@ -45,7 +48,7 @@ protected:
|
||||
};
|
||||
|
||||
// No need for goldsource input support on the platforms that are not supported by GoldSource.
|
||||
#if GOLDSOURCE_SUPPORT && (_WIN32 || __linux__ || __APPLE__) && (__i386 || _M_IX86)
|
||||
#if GOLDSOURCE_SUPPORT && ( XASH_WIN32 || ( XASH_LINUX && !XASH_ANDROID ) || XASH_APPLE ) && XASH_X86
|
||||
#define SUPPORT_GOLDSOURCE_INPUT 1
|
||||
|
||||
#if _WIN32
|
||||
|
Loading…
Reference in New Issue
Block a user