ULTIMA8: Fix rendering non-ascii text (fixes #11627 and #11491)

This commit is contained in:
Matthew Duggan 2020-08-27 21:13:00 +09:00
parent ed8fd5703d
commit 0c402f9589

View File

@ -116,7 +116,7 @@ int ShapeFont::charToFrameNum(char c) const {
else
return c - 2;
} else {
return c;
return static_cast<unsigned char>(c);
}
}