Merge branch 'an/fix-gfx-prefix' of https://github.com/AntonioND/rgbds

This commit is contained in:
Anthony J. Bentley
2016-09-05 02:35:24 -06:00

View File

@@ -97,7 +97,7 @@ ascii2bin(char *s)
while (*s != '\0') {
c = convertfunc(*s++);
result = result * 2 + ((c & 1) << 8) + ((c & 2) >> 1);
result = result * 2 + ((c & 2) << 7) + (c & 1);
}
} else {
while (*s != '\0')