X-Git-Url: https://git.distorted.org.uk/u/mdw/putty/blobdiff_plain/f11233cb78347e3e7ad9c4834f75a4f6923100a9..ab46932306623bd6e231a58f784fcb46c16f755e:/winstore.c diff --git a/winstore.c b/winstore.c index 553f474e..3ce84e06 100644 --- a/winstore.c +++ b/winstore.c @@ -182,18 +182,6 @@ int read_setting_fontspec(void *handle, const char *name, FontSpec *result) ret.height = read_setting_i(handle, settingname, INT_MIN); sfree(settingname); if (ret.height == INT_MIN) return 0; - if (ret.height < 0) { - int oldh, newh; - HDC hdc = GetDC(NULL); - int logpix = GetDeviceCaps(hdc, LOGPIXELSY); - ReleaseDC(NULL, hdc); - - oldh = -ret.height; - newh = MulDiv(oldh, 72, logpix) + 1; - if (MulDiv(newh, logpix, 72) > oldh) - newh--; - ret.height = newh; - } *result = ret; return 1; }