buildfix
This commit is contained in:
parent
a6b24b4d42
commit
2ef75cb300
|
@ -11,7 +11,7 @@ static const char* stock_fragment_xmb_bokeh = GLSL(
|
||||||
uv.x *= OutputSize.x / OutputSize.y;
|
uv.x *= OutputSize.x / OutputSize.y;
|
||||||
vec3 color = vec3(0.0);
|
vec3 color = vec3(0.0);
|
||||||
|
|
||||||
for( int i=0; i < 48; i++ )
|
for( int i=0; i < 8; i++ )
|
||||||
{
|
{
|
||||||
float pha = sin(float(i) * 546.13 + 1.0) * 0.5 + 0.5;
|
float pha = sin(float(i) * 546.13 + 1.0) * 0.5 + 0.5;
|
||||||
float siz = pow(sin(float(i) * 651.74 + 5.0) * 0.5 + 0.5, 4.0);
|
float siz = pow(sin(float(i) * 651.74 + 5.0) * 0.5 + 0.5, 4.0);
|
||||||
|
|
|
@ -1078,7 +1078,7 @@ static void handle_hotplug(android_input_t *android,
|
||||||
RARCH_LOG("Special Device Detected: %s\n", device_model);
|
RARCH_LOG("Special Device Detected: %s\n", device_model);
|
||||||
{
|
{
|
||||||
/* always map remote to port #0 */
|
/* always map remote to port #0 */
|
||||||
if (strstr(device_name, "Amazon Fire TV Remote")
|
if (strstr(device_name, "Amazon Fire TV Remote"))
|
||||||
{
|
{
|
||||||
android->pads_connected = 0;
|
android->pads_connected = 0;
|
||||||
*port = 0;
|
*port = 0;
|
||||||
|
@ -1093,6 +1093,7 @@ static void handle_hotplug(android_input_t *android,
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
strlcpy(name_buf, device_name, sizeof(name_buf));
|
strlcpy(name_buf, device_name, sizeof(name_buf));
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Other uncommon devices
|
/* Other uncommon devices
|
||||||
|
|
Loading…
Reference in New Issue