This commit is contained in:
twinaphex 2020-10-06 03:13:01 +02:00
parent 2e4a393743
commit b10c73f00f
1 changed files with 2 additions and 0 deletions

View File

@ -120,6 +120,7 @@ static inline void deinit_context_switch(void)
co_delete(cpu_thread); co_delete(cpu_thread);
} }
#if defined(PSP)
static uint32_t next_pow2(uint32_t v) static uint32_t next_pow2(uint32_t v)
{ {
v--; v--;
@ -131,6 +132,7 @@ static uint32_t next_pow2(uint32_t v)
v++; v++;
return v; return v;
} }
#endif
/* Video post processing START */ /* Video post processing START */