mirror of
https://github.com/libsdl-org/SDL.git
synced 2025-09-22 19:18:30 +00:00
PSP: Fix type mismatch warnings.
This commit is contained in:

committed by
Sam Lantinga

parent
c1317175b4
commit
5ddac7e026
@@ -101,7 +101,7 @@ int SDL_SemWaitTimeout(SDL_sem *sem, Uint32 timeout)
|
||||
pTimeout = &timeout;
|
||||
}
|
||||
|
||||
res = sceKernelWaitSema(sem->semid, 1, pTimeout);
|
||||
res = sceKernelWaitSema(sem->semid, 1, (SceUInt *) pTimeout);
|
||||
switch (res) {
|
||||
case SCE_KERNEL_ERROR_OK:
|
||||
return 0;
|
||||
|
Reference in New Issue
Block a user