[kandinsky] Fix typo that bugged glyph drawing

This commit is contained in:
Léa Saviot
2018-11-23 11:29:25 +01:00
committed by Émilie Feral
parent a95ff9797f
commit 2794669eb9

View File

@@ -44,7 +44,7 @@ private:
if (cInt < 0) {
/* A char casted as int takes its value between -127 and +128, but we want
* a positive value. -127 is thus 129, -126 is 130, etc. */
cInt+=128+(cInt-(-127)+1);
cInt=128+(cInt-(-127)+1);
}
return cInt - k_magicCharOffsetValue;
}