http://bugs.winehq.org/show_bug.cgi?id=30984
Bug #: 30984
Summary: Some keys do not work in Trine and Skyrim
Product: Wine
Version: 1.5.7
Platform: x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: winex11.drv
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: yves.embil(a)orange.fr
Classification: Unclassified
Regression SHA1: 43984f355a2905e16075a9df3d7fbe463761e853
Created attachment 40666
--> http://bugs.winehq.org/attachment.cgi?id=40666
result of the regression test
In Trine the key to select the thief and Skyrim the key to open the console
does not work,with wine-1.5.5 it works.
--
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=45605
Bug ID: 45605
Summary: Letter keys doesn't work in DirectX aplications
Product: Wine
Version: 3.13
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: minor
Priority: P2
Component: directx-dinput
Assignee: wine-bugs(a)winehq.org
Reporter: ilya77105(a)gmail.com
Distribution: ---
Created attachment 62035
--> https://bugs.winehq.org/attachment.cgi?id=62035
Screenshot without keys
I will use Far Cry 3 for demonstration, but all applications, that i tested
shows the same behavior.
When English layout is not selected as default in keyboard settings (in OS
settings, not Wine) games doesn't recognize keys at all (screenshot). When i
select English layout as default, all is ok. Console output have no information
about it.
--
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=42033
Bug ID: 42033
Summary: Fallout 3: Radio music not playing
Product: Wine
Version: 2.0-rc1
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: aaronbpaden(a)gmail.com
Distribution: ---
Created attachment 56507
--> https://bugs.winehq.org/attachment.cgi?id=56507
log
When listening to the radio in Fallout 3, the DJ's voice works, but the songs
don't. Sometimes you'll hear the song start for a second, but then it stops and
the DJ's voice starts up again. This happens both on GNR and the enclave
station.
--
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=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=43585
Bug ID: 43585
Summary: Calling PageSetupDlgA with invalid default printer
leads to an unhandled exception
Product: Wine
Version: 2.15
Hardware: x86
OS: Windows
Status: UNCONFIRMED
Severity: minor
Priority: P2
Component: comdlg32
Assignee: wine-bugs(a)winehq.org
Reporter: kamil.hornicek(a)reactos.org
Created attachment 58997
--> https://bugs.winehq.org/attachment.cgi?id=58997
possible solution
This was tested in Windows XP with Wine's comdlg32.dll.
Steps to reproduce:
1. set Software\Microsoft\Windows NT\CurrentVersion\Windows\Device to a
non-existent printer
2. run comdlg32 printdlg test
Expected result:
PageSetupDlgA should fail with PDERR_NODEFAULTPRN
Acutal result:
test_PageSetupDlgA crashes after null pointer dereference in
GdiConvertToDevmodeW
Remarks:
If the value of the system default printer stored in Software\Microsoft\Windows
NT\CurrentVersion\Windows\Device gets corrupted or is not properly set upon
printer
removal, PageSetupDlgA called with the PSD_RETURNDEFAULT flag will cause an
unhandled exception in gdi32:GdiConvertToDevmodeW after calling it with a null
devmode.
At comdlg32:pagesetup_common@3862 get_default_printer will succeed but the
returned printer will be bogus. Then pagesetup_change_printer will fail trying
to get the default driver. When pagesetup_update_papersize is called few lines
below the devmode stored in the pagesetup_data struct passed to it will be
null, which will lead to the crash.
Solution:
Function comdlg32:pagesetup_common needs to check the return value of
comdlg32:pagesetup_change_printer and return if it fails. Attached is a
possible solution to this bug.
--
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=46012
Bug ID: 46012
Summary: Command & Conquer 3: Kane's Wrath (1.03) Invisible
units and tiberium
Product: Wine-staging
Version: 3.18
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: huematrix(a)mailinator.com
CC: leslie_alistair(a)hotmail.com, z.figura12(a)gmail.com
Distribution: ---
Created attachment 62582
--> https://bugs.winehq.org/attachment.cgi?id=62582
Log file
When loading in Command and Conquer 3: Kane's Wrath (Unofficial patch 1.03, but
from Origin), every unit, tiberium, as well as some of the scenery, are
invisible.
Changing the graphics settings didn't change anything, attached is the log with
tons of d3d9 errors.
--
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=33943
Bug #: 33943
Summary: Battle.net client region dropdown does not appear
until you hover its options
Product: Wine
Version: 1.6-rc1
Platform: x86
OS/Version: Linux
Status: NEW
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: adys.wh(a)gmail.com
Classification: Unclassified
When opening the Battle.net client (currently in closed beta), the region
dropdown is invisible until the cursor actually goes over its options.
No relevant console output.
--
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=44795
Bug ID: 44795
Summary: Need for Speed: Shift demo needs
ID3DXEffectImpl_SetRawValue
Product: Wine
Version: 3.4
Hardware: x86-64
URL: http://www.fileplanet.com/205212/200000/fileinfo/Need-
For-Speed:-Shift-Demo
OS: Linux
Status: NEW
Keywords: download
Severity: minor
Priority: P2
Component: directx-d3dx9
Assignee: wine-bugs(a)winehq.org
Reporter: andrey.goosev(a)gmail.com
Distribution: ---
0009:fixme:d3dx:ID3DXEffectImpl_SetRawValue iface 0x1aae78e8, parameter
0x1aae8ca8, data 0x8f4a2b0, byte_offset 0, bytes 256 stub!
0009:fixme:d3dx:ID3DXEffectImpl_SetRawValue iface 0x1aae78e8, parameter
0x1aae8d18, data 0x8f4a3b0, byte_offset 0, bytes 16 stub!
0009:fixme:d3dx:ID3DXEffectImpl_SetRawValue iface 0x1aae78e8, parameter
0x1aae8d88, data 0x8f4a3c0, byte_offset 0, bytes 16 stub!
0009:fixme:d3dx:ID3DXEffectImpl_SetRawValue iface 0x1aae78e8, parameter
0x1aae8df8, data 0x8f4a3d0, byte_offset 0, bytes 16 stub!
0009:fixme:d3dx:ID3DXEffectImpl_SetRawValue iface 0x1aae78e8, parameter
0x1aae8e68, data 0x8f4a3f0, byte_offset 0, bytes 64 stub!
Car textures are dark. During a race road almost black.
wine-3.4-120-gafef57f872
--
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=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.