X-Git-Url: https://git.jsancho.org/?a=blobdiff_plain;f=Source%2FWinInput.cpp;h=0b575573b376a6ffd05ab7a0ff4543d61a0f70b6;hb=bcb5c54b2b6170c185583c18f5ec97b0bb813f0a;hp=856bf12a6b601b2ea90dcc41036fdff4ff498c72;hpb=0cca0c495c7dc29d134a10d7eed5de1f377c99bf;p=lugaru.git diff --git a/Source/WinInput.cpp b/Source/WinInput.cpp index 856bf12..0b57557 100644 --- a/Source/WinInput.cpp +++ b/Source/WinInput.cpp @@ -1,6 +1,13 @@ /**> HEADER FILES <**/ #include "WinInput.h" + +#ifdef WIN32 #include "String.h" +#else +#include +#include +#include +#endif extern bool keyboardfrozen; extern bool buttons[3]; @@ -986,4 +993,4 @@ bool Compare(char *thestring, char *tocompare, int start, int end) if(thestring[i]!=tocompare[i-start]&&thestring[i]!=tocompare[i-start]+'A'-'a')return 0; } return 1; -} \ No newline at end of file +}