audio/mutex header: Minor consistency changes

This commit is contained in:
Joel16 2021-12-07 11:29:26 -05:00
parent cf7454758a
commit c21d474626
2 changed files with 3 additions and 3 deletions

View File

@ -8,7 +8,7 @@
extern bool playing, paused;
typedef struct {
bool has_meta;
bool has_meta = false;
std::string title;
std::string album;
std::string artist;

View File

@ -9,9 +9,9 @@
extern "C" {
#endif
int sceKernelCreateMutex(const char *name, uint attributes, int initial_count, void* options);
int sceKernelCreateMutex(const char *name, uint attributes, int initial_count, void *options);
int sceKernelDeleteMutex(int mutexId);
int sceKernelLockMutex(int mutexId, int count, uint* timeout);
int sceKernelLockMutex(int mutexId, int count, uint *timeout);
int sceKernelTryLockMutex(int mutexId, int count);
int sceKernelUnlockMutex(int mutexId, int count);