From 3bfbece7c1c0463f1e5377adfd7ea8df297bdc78 Mon Sep 17 00:00:00 2001 From: "Mr. eXoDia" Date: Sat, 8 Mar 2014 19:55:16 +0100 Subject: [PATCH] - cleared up issue #13 --- TitanEngine/Global.Engine.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/TitanEngine/Global.Engine.cpp b/TitanEngine/Global.Engine.cpp index 5e4295a..d45180e 100644 --- a/TitanEngine/Global.Engine.cpp +++ b/TitanEngine/Global.Engine.cpp @@ -292,7 +292,7 @@ bool EngineIsPointedMemoryString(ULONG_PTR PossibleStringPtr) { TestChar = *((BYTE*)PossibleStringPtr); - if(TestChar < 32 || TestChar > 126) + if(TestChar < ' ' || TestChar > '~') //is inside the lower-ascii range { if(TestChar != 0x00) {