From bb59b318de03c74d9a1f732a6267a8f39ce21e50 Mon Sep 17 00:00:00 2001 From: Ivan Epifanov Date: Sun, 28 Feb 2021 14:39:23 +0300 Subject: [PATCH] Shut up warning --- common/threads.h | 1 + 1 file changed, 1 insertion(+) diff --git a/common/threads.h b/common/threads.h index 26aef7ba..9e76f33c 100644 --- a/common/threads.h +++ b/common/threads.h @@ -169,6 +169,7 @@ inline void althrd_yield(void) inline int althrd_sleep(const struct timespec *ts, struct timespec *rem) { #ifdef __vita__ + (void)rem; // unused if(sceKernelDelayThread(ts->tv_sec * 1000000 + ts->tv_nsec / 1000) != 0) { return -2;