From 401693ff0ae7698a5e45a6a74dac674059e69800 Mon Sep 17 00:00:00 2001 From: twinaphex Date: Tue, 7 Apr 2015 21:07:09 +0200 Subject: [PATCH] Make iPad Air level 16 and iPad Mini 2/3 level 15 --- frontend/drivers/platform_apple.c | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/frontend/drivers/platform_apple.c b/frontend/drivers/platform_apple.c index 1b2f6d0274..3c7cacdce2 100644 --- a/frontend/drivers/platform_apple.c +++ b/frontend/drivers/platform_apple.c @@ -262,13 +262,6 @@ static int frontend_apple_get_rating(void) if (strstr(model, "iPhone6,1") || strstr(model, "iPhone6,2")) return 14; - /* iPad Air */ - if ( strstr(model, "iPad4,1") - || strstr(model, "iPad4,2") - || strstr(model, "iPad4,3") - ) - return 15; - /* iPad Mini 2/3 */ if ( strstr(model, "iPad4,4") || strstr(model, "iPad4,5") @@ -277,6 +270,13 @@ static int frontend_apple_get_rating(void) || strstr(model, "iPad4,8") || strstr(model, "iPad4,9") ) + return 15; + + /* iPad Air */ + if ( strstr(model, "iPad4,1") + || strstr(model, "iPad4,2") + || strstr(model, "iPad4,3") + ) return 16; /* iPhone 6, iPhone 6 Plus */