Fixed sprite generation for 125% and 150% interface scales.

This commit is contained in:
John Preston 2016-09-02 00:03:36 -04:00
parent d864a8d8eb
commit 659551e439
1 changed files with 4 additions and 1 deletions

View File

@ -75,7 +75,10 @@ inline bool operator!=(const Type &a, const Type &b) {
namespace data {
inline int pxAdjust(int value, int scale) {
return qRound((value * scale / 4.) + (value > 0 ? -0.01 : 0.01));
if (value < 0) {
return -pxAdjust(-value, scale);
}
return static_cast<int>(std::floor((value * scale / 4.) + 0.1));
}
struct point {