- 23 Aug, 2022 10 commits
-
-
Davide Beatrici authored
-
Davide Beatrici authored
-
Davide Beatrici authored
-
Davide Beatrici authored
-
Davide Beatrici authored
Bug introduced in e29dc33a.
-
Rémi Bernon authored
-
Rémi Bernon authored
-
Rémi Bernon authored
So that updating dmPelsWidth / dmPelsHeight doesn't modify user devmode.
-
Rémi Bernon authored
-
Rémi Bernon authored
It's not always serializable and cannot be shared across processes.
-
- 19 Aug, 2022 22 commits
-
-
Nikolay Sivov authored
Signed-off-by: Nikolay Sivov <nsivov@codeweavers.com>
-
Nikolay Sivov authored
Signed-off-by: Nikolay Sivov <nsivov@codeweavers.com>
-
Nikolay Sivov authored
Signed-off-by: Nikolay Sivov <nsivov@codeweavers.com>
-
Nikolay Sivov authored
Signed-off-by: Nikolay Sivov <nsivov@codeweavers.com>
-
Akihiro Sagawa authored
-
Akihiro Sagawa authored
-
Akihiro Sagawa authored
-
Akihiro Sagawa authored
-
Akihiro Sagawa authored
-
Akihiro Sagawa authored
-
Akihiro Sagawa authored
-
Alexandre Julliard authored
Fix the corresponding message sequences.
-
Aurimas Fišeras authored
-
Huw Davies authored
-
Zhiyi Zhang authored
When height > 0, CreateFontA/W() should not return a font face exceeding the requested height. For instance, Tahoma has 2049 units of ascent, 423 units of descent and its units per EM square is 2048. When requesting a font 20 pixels in height, ppem = units_per_EM * requested_height / (ascent + descent) = 2048 * 20 / (2049 + 423) = 16.57 ~= 17. When getting the resulting height back from the ppem, resulting_height = (ascent + descent) * ppem / units_per_EM = (2049.0 + 423) * 17 / 2048 = 20.52 ~=21. So it ends up getting a larger font than requested and violates the spec. Fix Nancy Drew: Legend of the Crystal Skull crash at start. Signed-off-by: Zhiyi Zhang <zzhang@codeweavers.com>
-
Zhiyi Zhang authored
Signed-off-by: Zhiyi Zhang <zzhang@codeweavers.com>
-
Jiajin Cui authored
This is to prevent replacement loops.
-
Jiajin Cui authored
-
Konstantin Romanov authored
kerberos: Fix condition for create_context_handle in kerberos_SpInitLsaModeContext and kerberos_SpAcceptLsaModeContext. Wine-Bug: https://bugs.winehq.org/show_bug.cgi?id=53472
-
Robert Wilhelm authored
-
Robert Wilhelm authored
You have to pass string length without terminal null to SysAllocStringLen. Wine-Bug: https://bugs.winehq.org/show_bug.cgi?id=53569
-
Robert Wilhelm authored
-
- 18 Aug, 2022 8 commits
-
-
Jacek Caban authored
-
Jacek Caban authored
On wow64 64-bit win32u.dll is always loaded, causing win32u.so to initialize at earlier stage than it would otherwise do. This patch makes it more consistent across environments.
-
Jacek Caban authored
-
Jacek Caban authored
-
Jacek Caban authored
-
Jacek Caban authored
-
Zhiyi Zhang authored
Ignore some messages for the parent window because the "Kill focus" message sequence starts succeeding with this commit but sometimes those messages appear on Wine and cause random test failures. Those messages are not interested in the tests so ignore them. Signed-off-by: Zhiyi Zhang <zzhang@codeweavers.com>
-
Zhiyi Zhang authored
Fix MSXML 3.0 installer username edit control missing part of its edge. The application has a static control overlapping an edit control. Repainting the edit control immediately will cause the edit control to be painted under the static control. Signed-off-by: Zhiyi Zhang <zzhang@codeweavers.com>
-