diff --git a/Core/Config.cpp b/Core/Config.cpp index 8d731c1e6fbb..c91fea1bb482 100644 --- a/Core/Config.cpp +++ b/Core/Config.cpp @@ -385,11 +385,15 @@ static int DefaultInternalResolution() { } static int DefaultZoomType() { +#ifdef BLACKBERRY if (pixel_xres < 1.3 * pixel_yres) { return 1; } else { return 2; } +#else + return 2; +#endif } static bool DefaultTimerHack() {