Closing Tux Paint before the end of font scanning resulted in crashes in the Android port.
This commit is contained in:
parent
ba19100fb9
commit
bcc3bdda96
3 changed files with 14 additions and 0 deletions
|
|
@ -1519,7 +1519,11 @@ int charset_works(TuxPaint_Font * font, const char *s)
|
|||
unsigned count = 0;
|
||||
int ret = 0;
|
||||
|
||||
#ifndef FORKED_FONTS && #defined __ANDROID__
|
||||
while (*s && !font_thread_aborted)
|
||||
#else
|
||||
while (*s)
|
||||
#endif
|
||||
{
|
||||
char c[8];
|
||||
unsigned offset = 0;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue