- cleared up issue #13

This commit is contained in:
Mr. eXoDia 2014-03-08 19:55:16 +01:00
parent a322cabe19
commit 3bfbece7c1
1 changed files with 1 additions and 1 deletions

View File

@ -292,7 +292,7 @@ bool EngineIsPointedMemoryString(ULONG_PTR PossibleStringPtr)
{ {
TestChar = *((BYTE*)PossibleStringPtr); TestChar = *((BYTE*)PossibleStringPtr);
if(TestChar < 32 || TestChar > 126) if(TestChar < ' ' || TestChar > '~') //is inside the lower-ascii range
{ {
if(TestChar != 0x00) if(TestChar != 0x00)
{ {