Changed the name of SDL_mutexP() SDL_mutexV()

This commit is contained in:
Sam Lantinga
2013-03-07 20:12:40 -08:00
parent f08dba6efc
commit 2952d9bf48
17 changed files with 51 additions and 51 deletions

View File

@@ -79,7 +79,7 @@ SDL_DestroyMutex(SDL_mutex * mutex)
/* Lock the mutex */
int
SDL_mutexP(SDL_mutex * mutex)
SDL_LockMutex(SDL_mutex * mutex)
{
int retval;
#if FAKE_RECURSIVE_MUTEX
@@ -165,7 +165,7 @@ SDL_TryLockMutex(SDL_mutex * mutex)
}
int
SDL_mutexV(SDL_mutex * mutex)
SDL_UnlockMutex(SDL_mutex * mutex)
{
int retval;