removing debug preprocessor code

This commit is contained in:
Resaec 2018-10-17 20:19:42 +02:00
parent ed74e4eb8e
commit 4f294344c9
No known key found for this signature in database
GPG Key ID: 5E890BD898EA9064

View File

@ -142,9 +142,7 @@ uint64_t memSearch(
do
{
if (skipCount) skipCount--;
#ifndef _WIN32
location = (uint64_t)memmem((const void*)startLocation, searchAreaSize, (const void*)pattern, patternSize);
#endif
} while (skipCount > 0);
if (location == 0) return 0;