From a317a0d2733058dac6e59cda8e4c21d051077fd3 Mon Sep 17 00:00:00 2001 From: Valentin Ochs Date: Fri, 13 Jan 2017 10:08:25 +0100 Subject: [PATCH] Fix charIsUpper(). Solves issue #15. --- BBGE/Base.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/BBGE/Base.cpp b/BBGE/Base.cpp index f21a2e0..764ec29 100644 --- a/BBGE/Base.cpp +++ b/BBGE/Base.cpp @@ -218,7 +218,7 @@ static TransatableStaticInit _transtable_static_init; static unsigned char charIsUpper(unsigned char c) { - return c == upperToLowerTable[c]; + return c == lowerToUpperTable[c]; } static unsigned char charToLower(unsigned char c)