RetroArch/wii/libogc/libogc/lwp_priority.c
gblues 6904101c44 Clean up trailing whitespace
== DETAILS

Really simple code cleanup, because my editor flags trailing whitespaces
and it's pretty annoying.
2017-12-12 00:24:18 -08:00

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;
}