1
0
mirror of https://github.com/libretro/RetroArch synced 2024-07-08 20:25:47 +00:00

(XMB) Code cleaning

This commit is contained in:
Jean-André Santoni 2018-06-22 22:31:06 +07:00
parent 1ff15fd071
commit 6868670136

View File

@ -287,34 +287,30 @@ float scale_mod[8] = {
}; };
static float coord_shadow[] = { static float coord_shadow[] = {
0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0,
0, 0, 0,
0, 0, 0, 0 0, 0, 0, 0
}; };
static float coord_black[] = { static float coord_black[] = {
0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0,
0, 0, 0,
0, 0, 0, 0 0, 0, 0, 0
}; };
static float coord_white[] = { static float coord_white[] = {
1, 1, 1, 1, 1, 1, 1,
1, 1, 1, 1, 1, 1, 1,
1, 1, 1, 1, 1, 1, 1,
1, 1, 1,
1, 1, 1, 1 1, 1, 1, 1
}; };
static float item_color[] = { static float item_color[] = {
1, 1, 1, 1, 1, 1, 1,
1, 1, 1, 1, 1, 1, 1,
1, 1, 1, 1, 1, 1, 1,
1, 1, 1,
1, 1, 1, 1 1, 1, 1, 1
}; };