mirror of
https://github.com/gbdev/rgbds.git
synced 2025-11-23 11:32:07 +00:00
Merge branch 'an/fix-gfx-prefix' of https://github.com/AntonioND/rgbds
This commit is contained in:
@@ -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')
|
||||
|
||||
Reference in New Issue
Block a user