Skip to content

Commit cea3f5a

Browse files
committed
Try to fix ps2 build
1 parent 50141a6 commit cea3f5a

File tree

1 file changed

+0
-3
lines changed
  • libretro/libretro-common/libco

1 file changed

+0
-3
lines changed

libretro/libretro-common/libco/ps2.c

-3
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,6 @@ cothread_t co_create(unsigned int size, void (*entrypoint)(void))
3131

3232
if ( threadStack== NULL)
3333
{
34-
printf("libco: ERROR: creating threadStack\n");
3534
return(-1);
3635
}
3736

@@ -43,8 +42,6 @@ cothread_t co_create(unsigned int size, void (*entrypoint)(void))
4342
thread.initial_priority = 1;
4443

4544
int32_t new_thread_id = CreateThread(&thread);
46-
if (new_thread_id < 0)
47-
printf("libco: ERROR: creating thread\n");
4845

4946
StartThread(new_thread_id, NULL);
5047
*(uint32_t *)handle = new_thread_id;

0 commit comments

Comments
 (0)