mirror of
https://github.com/libretro/RetroArch
synced 2025-03-04 16:13:50 +00:00
== DETAILS Really simple code cleanup, because my editor flags trailing whitespaces and it's pretty annoying.
15 lines
227 B
C
15 lines
227 B
C
#include <gctypes.h>
|
|
|
|
vu32 _prio_major_bitmap;
|
|
u32 _prio_bitmap[16] __attribute__((aligned(32)));
|
|
|
|
void __lwp_priority_init()
|
|
{
|
|
u32 index;
|
|
|
|
_prio_major_bitmap = 0;
|
|
for(index=0;index<16;index++)
|
|
_prio_bitmap[index] = 0;
|
|
|
|
}
|