Fixed more warnings.

This commit is contained in:
OBattler
2021-04-29 22:32:54 +02:00
parent 63e9af5898
commit 8e88fe4c4f
2 changed files with 1 additions and 4 deletions

View File

@@ -117,9 +117,6 @@ SpecifyDimensionsDialogProcedure(HWND hdlg, UINT message, WPARAM wParam, LPARAM
dpi = win_get_dpi(hwndMain);
temp_x = MulDiv(temp_x, dpi, 96);
temp_y = MulDiv(temp_y, dpi, 96);
} else {
temp_x = temp_x;
temp_y = temp_y;
}
ResizeWindowByClientArea(hwndMain, temp_x, temp_y + sbar_height);