Skip to content

Commit

Permalink
Set default partial stretch only for blackberry devices without ws.
Browse files Browse the repository at this point in the history
  • Loading branch information
LunaMoo committed Jan 17, 2016
1 parent 6061ad7 commit 55903ce
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions Core/Config.cpp
Expand Up @@ -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() {
Expand Down

0 comments on commit 55903ce

Please sign in to comment.