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 Dec 21, 2015
1 parent ca2a09d commit 18e7c8e
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions Core/Config.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -367,11 +367,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 18e7c8e

Please sign in to comment.