X-Git-Url: https://git.distorted.org.uk/u/mdw/putty/blobdiff_plain/3f935d5bf975b26836da2fac5cd6e3df67a5e184..e35fb54b2ce23c668414c0f5cd072c709374fc6d:/winstore.c diff --git a/winstore.c b/winstore.c index b6f98f5d..3ce84e06 100644 --- a/winstore.c +++ b/winstore.c @@ -3,7 +3,6 @@ * defined in storage.h. */ -#include #include #include #include @@ -183,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; }