(Apple) Style nits

This commit is contained in:
twinaphex 2015-04-07 20:57:20 +02:00
parent 4bc43fae53
commit 23071b6131

View File

@ -234,30 +234,42 @@ static int frontend_apple_get_rating(void)
frontend_apple_get_name(model, sizeof(model)); frontend_apple_get_name(model, sizeof(model));
/* iPhone 4 */
#if 0
if (strstr(model, "iPhone3"))
return -1;
#endif
/* iPad 1 */
#if 0
if (strstr(model, "iPad1,1"))
return -1;
#endif
/* iPhone 4S */ /* iPhone 4S */
if (strstr(model, "iPhone4,1")) if (strstr(model, "iPhone4,1"))
return 8; return 8;
/* iPad 2/iPad Mini 1 */
if (strstr(model, "iPad2"))
return 9;
/* iPhone 5/5C */ /* iPhone 5/5C */
if (strstr(model, "iPhone5")) if (strstr(model, "iPhone5"))
return 13; return 13;
/* iPhone 5S */ /* iPhone 5S */
if (strstr(model, "iPhone6")) if (strstr(model, "iPhone6,1") || strstr(model, "iPhone6,2"))
return 14; return 14;
/* iPhone 6, iPhone 6 Plus */
if (strstr(model, "iPhone7"))
return 16;
/* iPad 2/iPad Mini 1 */
if (strstr(model, "iPad2"))
return 9;
/* iPad Air/iPad Mini 2 */ /* iPad Air/iPad Mini 2 */
if (strstr(model, "iPad4")) if (strstr(model, "iPad4"))
return 15; return 15;
/* iPhone 6, iPhone 6 Plus */
if (strstr(model, "iPhone7"))
return 16;
/* iPad Air 2 */ /* iPad Air 2 */
if (strstr(model, "iPad5,3") || strstr(model, "iPad5,4")) if (strstr(model, "iPad5,3") || strstr(model, "iPad5,4"))
return 17; return 17;