Mac build fix to the issue caused by my last commit.

git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@5050 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
Glenn Rice 2010-02-13 21:06:19 +00:00
parent 9272d3c628
commit 47609c4524
2 changed files with 2 additions and 2 deletions

View File

@ -606,7 +606,7 @@ bool IsKey(int Key)
if (MapKey < 256)
{
Ret = GetAsyncKeyState(MapKey); // Keyboard (Windows)
#else
#elif defined HAVE_X11 && HAVE_X11
if (MapKey < 256 || MapKey > 0xf000)
{
char keys[32];

View File

@ -307,7 +307,7 @@ bool IsKey(int Key)
if (MapKey < 256)
{
Ret = GetAsyncKeyState(MapKey); // Keyboard (Windows)
#else
#elif defined(HAVE_X11) && HAVE_X11
if (MapKey < 256 || MapKey >= 0xf000)
{
char keys[32];