Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/physfs_platform_libretro.c
Original file line number Diff line number Diff line change
Expand Up @@ -208,7 +208,7 @@ void __PHYSFS_platformDestroyMutex(void *mutex)
int __PHYSFS_platformGrabMutex(void *mutex)
{
#ifdef PHYSFS_PLATFORM_LIBRETRO_NO_THREADS
return 0;
return 1; /* Single-threaded, so we ignore this by returning success. */
#else
PthreadMutex *m = (PthreadMutex *) mutex;
uintptr_t tid = sthread_get_current_thread_id();
Expand Down
Loading