Ported configuration manager to Allegro GUI

This commit is contained in:
pcem_emulator 2017-05-15 22:03:38 +01:00
commit d2245f2d45
17 changed files with 500 additions and 143 deletions

View file

@ -14,7 +14,7 @@ thread_t *thread_create(void (*thread_rout)(void *param), void *param)
{
pthread_t *thread = malloc(sizeof(pthread_t));
pthread_create(thread, NULL, thread_rout, param);
pthread_create(thread, NULL, (void *)thread_rout, param);
return thread;
}