From 7ccf722200fda3612cf684636e7f95e7f05ca74a Mon Sep 17 00:00:00 2001 From: tomcw Date: Mon, 4 Apr 2016 22:38:01 +0100 Subject: [PATCH] Fixed: AltCharSet flag was inverted --- source/Video.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/Video.cpp b/source/Video.cpp index ab4ff8f6..b1feaf47 100644 --- a/source/Video.cpp +++ b/source/Video.cpp @@ -1322,7 +1322,7 @@ bool VideoGetSWTEXT(void) bool VideoGetSWAltCharSet(void) { - return g_nAltCharSetOffset == 0; + return g_nAltCharSetOffset != 0; } //===========================================================================