https://bugs.winehq.org/show_bug.cgi?id=42117
Bug ID: 42117
Summary: Chessmaster 9000 windows with double caption/title
bars
Product: Wine
Version: 2.0-rc3
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: bkbk9(a)yahoo.ca
Distribution: ---
Created attachment 56643
--> https://bugs.winehq.org/attachment.cgi?id=56643
Screenshot, windows with double captions, wine 2.0-rc3
Chessmaster 9000 window and child windows have 2 title bars/captions.
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=54066
Bug ID: 54066
Summary: SysLink control shouldn't delete the HFONT it didn't
create
Product: Wine
Version: 7.22
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: comctl32
Assignee: wine-bugs(a)winehq.org
Reporter: vz-wine(a)zeitlins.org
Distribution: ---
I believe there is a bug in `dlls/comctl32/syslink.c` where `WM_DESTROY`
handler calls `DeleteObject(infoPtr->Font)`, although this font is not owned by
the control -- it is (or can be) given to it via `WM_SETFONT` and doing this
means that a system font can be destroyed prematurely, resulting in plenty of
other problems later on in the program.
Amazingly, it looks like this code was there since a1f3756daab (Free allocated
font handles when control is destroyed., 2004-12-08) and I don't really
understand how could it not be noticed until now, but apparently somehow it
wasn't.
The following trivial patch:
```
diff --git a/dlls/comctl32/syslink.c b/dlls/comctl32/syslink.c
index 8130bf19641..efc3467838b 100644
--- a/dlls/comctl32/syslink.c
+++ b/dlls/comctl32/syslink.c
@@ -1709,7 +1709,6 @@ static LRESULT WINAPI SysLinkWindowProc(HWND hwnd, UINT
message,
case WM_DESTROY:
TRACE("SysLink Ctrl destruction, hwnd=%p\n", hwnd);
SYSLINK_ClearDoc(infoPtr);
- if(infoPtr->Font != 0) DeleteObject(infoPtr->Font);
if(infoPtr->LinkFont != 0) DeleteObject(infoPtr->LinkFont);
SetWindowLongPtrW(hwnd, 0, 0);
Free (infoPtr);
```
is enough to fix the problem for me.
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=56145
Bug ID: 56145
Summary: Wine lacks VR support ( OpenVR/OpenXR runtime shim)
Product: Wine
Version: 9.0-rc3
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: enhancement
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: xeno(a)x-s.com.pl
Distribution: ---
Currently VR support in Linux gets to the point where it becomes viable option.
Linux native apps tend to do just fine , but there's no way for VR capable
windows apps running trough Wine to detect/use VR devices.
VR is supposed to be supported on Proton and hacky Wine-Proton hybrids, where
first option limits support to apps from Steam and second one is a bit
cumbersome to get it working.
To solve this issue wine environment could provide thin VR runtime environment
that catches calls from apps and direct those to linux native VR runtime that
is installed on user system. Wine OpenXR library shouldn't be that complex as
it'd be simple 1:1 mapping of OpenXR API. For Valve OpenVR API there are two
possible approaches, one similar to OpenXR where wine just forward calls to
SteamVR or it could translate calls to OpenXR, like OpenComposite does, then
call OpenXR runtime on Linux side.
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=54697
Bug ID: 54697
Summary: Gaming.Input is not working with RAW controller API
Product: Wine
Version: 8.3
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: blocker
Priority: P2
Component: windows.gaming.input
Assignee: wine-bugs(a)winehq.org
Reporter: winrazor(a)gmail.com
Distribution: ---
Hello, I'm trying to run .Net Framework 7.0 application with Gamin.Input Raw
device API on Ubuntu Linux and have the following error:
fixme:input:controller_QueryInterface {43c0c035-bb73-4756-a787-3ed6bea617bd}
not implemented, returning E_NOINTERFACE
Connected device is detected but it cannot read info from device.
Tried with 2 different controllers: Trustmaster Dual Trigger and Xbox Series S
by cable, and have the same problem.
Wine 8.3 Staging is configured for Windows 11. In Windows 11 application works.
Do you have an idea?
Thanks is advance.
Timur.
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=56260
Bug ID: 56260
Summary: 16-bit Myst deadlocks when entering Book
Product: Wine
Version: 9.1
Hardware: x86-64
OS: Linux
Status: NEW
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: dark.shadow4(a)web.de
Distribution: ---
First, work around bug 56225.
- Run winecfg and mount the Myst/cd folder as D:\
- Run `sudo sysctl vm.mmap_min_addr=0`
- In one terminal, run `Xephyr :2 -ac -screen 800x600x8`
- In another terminal, run `DISPLAY=:2 openbox`
- In a third terminal, cd to "Myst/win3.1/MYST/" and run `DISPLAY=:2 wine
'MYST.EXE'`
Click through the intro and into the image in the book, this should get you
into the first world. On wine it just plays a sound, and then locks up.
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=56225
Bug ID: 56225
Summary: Myst deadlocks on start since Wine 3.2
Product: Wine
Version: 3.2
Hardware: x86
OS: Linux
Status: NEW
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: alexhenrie24(a)gmail.com
Distribution: ---
Steps to reproduce:
1. Run `sudo sysctl vm.mmap_min_addr=0`
2. Run `DISPLAY=:1 wine MYST.EXE`
In Wine 3.1, the game pops up a dialog that says "Myst requires a 256-color
palettized display driver." But in Wine 3.2 and later, Wine just prints an
error like the following:
00f0:err:sync:RtlpWaitForCriticalSection section 777129E0
"../wine/dlls/krnl386.exe16/syslevel.c: Win16Mutex" wait timed out in thread
00f0, blocked by 0114, retrying (60 sec)
`git bisect` says:
ed6bdb3c51cd4b8c94f9839806321703e7aa9765 is the first bad commit
commit ed6bdb3c51cd4b8c94f9839806321703e7aa9765
Author: Alexandre Julliard <julliard(a)winehq.org>
Date: Mon Feb 5 17:03:48 2018 +0100
krnl386: Remove support for DPMI real-mode calls.
Signed-off-by: Alexandre Julliard <julliard(a)winehq.org>
$ sha256sum myst_win3x_win.7z
562d3a3d829648352b94ab0d828290f17f90406d34218ebe3ffd0ac012cb12e3
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=34004
Bug #: 34004
Summary: Broken Sword: The Angel of Death demo needs native
d3dx9_36
Product: Wine
Version: 1.6-rc4
Platform: x86
URL: http://www.fileplanet.com/167033/160000/fileinfo/Broke
n-Sword:-The-Angel-of-Death-Demo
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: directx-d3dx9
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: andrey.goosev(a)gmail.com
CC: andrey.goosev(a)gmail.com, wine-bugs(a)winehq.org
Classification: Unclassified
Created attachment 45184
--> http://bugs.winehq.org/attachment.cgi?id=45184
log+d3dx
Without native d3dx9_36 shows a grey screen.
43e497c98f638e3b572b81d77a089bf6a03c3327 broken_sword_4-demo.zip
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=33769
Bug #: 33769
Summary: Strong Bad's Cool Game for Attractive People Demo
crashes without native d3dcompiler_43
Product: Wine
Version: 1.6-rc1
Platform: x86
OS/Version: Linux
Status: NEW
Severity: normal
Priority: P2
Component: directx-d3dx9
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: dank(a)kegel.com
CC: wine-bugs(a)winehq.org
Classification: Unclassified
The demo
dd2f18068f16a1353a3490d95723b746cec8050f SBCG4AP_Homestar_Ruiner_setup.exe
from
http://www.strategyinformer.com/pc/strongbadscoolgameforattractivepeople/de…
tested with wine-1.6-rc1, crashes unless you do
winetricks d3dcompiler_43
I'll attach a +seh,trace+d3dcompiler log.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=33770
Bug #: 33770
Summary: Strong Bad's Cool Game for Attractive People Demo has
interesting rendering glitches on initial menu screen
without native d3dx_36 (purist)
Product: Wine
Version: 1.6-rc1
Platform: x86
OS/Version: Linux
Status: NEW
Severity: normal
Priority: P2
Component: directx-d3dx9
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: dank(a)kegel.com
CC: wine-bugs(a)winehq.org
Classification: Unclassified
First, go purist with 'winetricks alldlls=builtin', then
work around bug 33769 with 'winetricks d3dcompiler_43'.
The game seems to start ok, but the initial menu screen
(where Strong Bad speaks the left-hand menu items as you
mouse over them) shows ghosts of Strong Bad and his sidekick
when they move.
'winetricks d3dx9_36' works around the problem.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=53775
Bug ID: 53775
Summary: Resident Evil 3 / Biohazard 3 (Sourcenext): Graphical
Issues with TeamX HD Mod
Product: Wine
Version: 7.18
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: mskau(a)protonmail.com
Distribution: ArchLinux
The HD assets seemingly do not load at all with the HD mod. Instead the game
expects the HD assets but the original assets are loaded instead, causing
graphical issues.
The game has both the TeamX HD mod and Classic Rebirth installed.
Both WineD3D and DXVK exhibit this behavior.
The modded game works without issues under Windows 10.
Screenshots:
https://cdn.discordapp.com/attachments/819766636583845901/10291889002682860…https://cdn.discordapp.com/attachments/819766636583845901/10291889028687668…
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.