X-Git-Url: https://git.jsancho.org/?a=blobdiff_plain;f=Source%2FWinInput.cpp;h=d38708c70e8b8620dbe776b49166745e4a957fe1;hb=eecffd77acac5500bad32cde2c56e18ee00f6cf7;hp=59b1277eb2f90e50c6de09f759417a7504b5a9c9;hpb=bbf7582c00138ab38f84b6acf52e76175bfebb79;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; -}