X-Git-Url: https://git.jsancho.org/?a=blobdiff_plain;f=Source%2FWinInput.cpp;h=d38708c70e8b8620dbe776b49166745e4a957fe1;hb=440a61a70a5eb14dea5d26aa7cd050e0a3e0e069;hp=59b1277eb2f90e50c6de09f759417a7504b5a9c9;hpb=3b05abdd90ab43f17da48a79cc0d0348e74b7d97;p=lugaru.git diff --git a/Source/WinInput.cpp b/Source/WinInput.cpp index 59b1277..d38708c 100644 --- a/Source/WinInput.cpp +++ b/Source/WinInput.cpp @@ -1006,12 +1006,3 @@ char Shift(char which) } return which; } - -bool Compare(const char *thestring, const char *tocompare, int start, int end) -{ - static int i; - for(i=start;i<=end;i++){ - if(thestring[i]!=tocompare[i-start]&&thestring[i]!=tocompare[i-start]+'A'-'a')return 0; - } - return 1; -}