http://bugs.winehq.org/show_bug.cgi?id=17107
Summary: compiler warnings in server/fd.c on NetBSD
Product: Wine
Version: 1.1.13
Platform: PC
OS/Version: NetBSD
Status: NEW
Keywords: download, source
Severity: enhancement
Priority: P2
Component: wineserver
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: austinenglish(a)gmail.com
fd.c: In function 'set_fd_epoll_events':
fd.c:580: warning: assignment makes integer from pointer without a cast
fd.c:581: warning: assignment makes integer from pointer without a cast
Only appears on NetBSD, but not OpenBSD/FreeBSD. Vincent Povirk helped me
investigate on IRC, and looks like the problem is that on FreeBSD, in
/usr/include/sys/event.h you've got:
struct kevent {
uintptr_t ident; /* identifier for this event */
short filter; /* filter for event */
u_short flags;
u_int fflags;
intptr_t data;
void *udata; /* opaque user data identifier */
};
But on NetBSD:
struct kevent {
uintptr_t ident; /* identifier for this event */
uint32_t filter; /* filter for event */
uint32_t flags; /* action flags for kqueue */
uint32_t fflags; /* filter flag value */
int64_t data; /* filter data value */
intptr_t udata; /* opaque user data identifier */
};
Note the difference in udata 'void *' vs 'intptr_t'.
Relevant lines from the code:
EV_SET( &ev[0], fd->unix_fd, EVFILT_READ, 0, NOTE_LOWAT, 1, (void *)user );
EV_SET( &ev[1], fd->unix_fd, EVFILT_WRITE, 0, NOTE_LOWAT, 1, (void *)user
);
removing (void *) or changing it to intptr_t fixes the warning, but doesn't
seem a proper fix. Probably needs an ifdef or typedef, but I'll leave that for
someone else to decide.
--
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=27374
Summary: FAR: Alt-tab will cause "alt" key to be left as
pressed when returning to console window (regression)
Product: Wine
Version: 1.3.21
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: singularita(a)gmail.com
When I updated wine I noticed that when I alt-tabbed out of console window with
opensource FAR (http://www.farmanager.com/opensource.php?l=en) file manager
(run via "wineconsole.exe --backend=user") and then either alt-tabbed back or
changed focus using mouse, Alt key was stuck as pressed (therefore pressing F10
resulted in program receiving Alt+F10, arrow down resulted in Alt+arrow down,
etc ...). Pressing and releasing the Alt key after alt-tabbing back fixes the
issuem, though it is slightly annoying.
This does not happen before, in good versions when alt-tabbed back, alt
returned to normal and pressing a key would result in program receiving just
that key.
I've verified that the bug is still present in current head of master in git
and I've run the regression test to find the commit that introduced this bug:
Result of regression test:
bc4afb078677095468d4ee8f9a15c18cbb47bbbf is the first bad commit
commit bc4afb078677095468d4ee8f9a15c18cbb47bbbf
Author: Alexandre Julliard <julliard(a)winehq.org>
Date: Tue Mar 1 11:54:55 2011 +0100
server: Don't pass a thread id to send_hardware_message, determine it from
the window.
:040000 040000 4e7ac89f77a4ddc31fd947151c34d0acadc5dcc0
a3d857abf43a1eed9fcb6837ea006ac00d80a1a7 M dlls
:040000 040000 7247b4b93aca9c98394638ccd0c48a788133a8cd
45aed0fb1bc86b403af16666b3fa5963c2abaf7d M include
:040000 040000 469f40ddbdca23554a397c5122a78e09a13e2c75
f118b4fd2fb23ecbde100798c68b3221fe5ec2fc M server
--
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=28810
Bug #: 28810
Summary: d3dx9_36/tests/mesh.ok: D3DXLoadMeshTest fails under
valgrind
Product: Wine
Version: 1.3.30
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
Under Valgrind, "make mesh.ok" fails with
mesh.c:2333: Test failed: Vertex[7]: Expected diffuse b3ffffff, got b2ffffff
mesh.c:2333: Test failed: Vertex[11]: Expected diffuse b3ffffff, got b2ffffff
mesh.c:2333: Test failed: Vertex[18]: Expected diffuse b3ffffff, got b2ffffff
mesh.c:2406: Test failed: Vertex[7]: Expected diffuse b3ffffff, got b2ffffff
mesh.c:2406: Test failed: Vertex[11]: Expected diffuse b3ffffff, got b2ffffff
mesh.c:2406: Test failed: Vertex[18]: Expected diffuse b3ffffff, got b2ffffff
This is on my i5 laptop, nvidia GeForce GTS 360M, NVIDIA 280.13.
The test passes without valgrind.
--
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=37863
Bug ID: 37863
Summary: Halo only works using Nvidia graphics
Product: Wine
Version: unspecified
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: directx-d3d
Assignee: wine-bugs(a)winehq.org
Reporter: vroom.henderson(a)gmail.com
Distribution: ---
Using GPUs other than Nvidia (confirmed with Intel and AMD), Halo will launch
but will just display a black screen. The music and menu sounds work correctly
when the arrow keys are pressed giving evidence that other than the graphics
component, the game is still actually running.
When the game is placed in "Safe Mode" the screen is all black except for some
flashing vertices in the lower right quadrant of the screen. The terminal also
outputs the following error repeatedly:
fixme:d3d:process_vertices_strided Didn't expect the destination to have a
normal
--
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=29183
Bug #: 29183
Summary: Heavy corruption when rendering edit control with
WM_PRINTCLIENT and possibly invalid HDC
Product: Wine
Version: 1.3.33
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: user32
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: toni.spets(a)iki.fi
Classification: Unclassified
Created attachment 37649
--> http://bugs.winehq.org/attachment.cgi?id=37649
Hack for the problem
This is the most severe bug with ResEdit currently. For some reason
WM_PRINTCLIENT might get a wParam with HDC that causes massive corruption when
used. Forcing using Begin/EndPaint avoid the problem.
On Windows it seems to work just fine.
Patch with hack attached and another attachment with the corruption shown. The
window height problem with the dialog in the center is related to another bug.
Also attached a screenshot with all my hacks applied.
--
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=38228
Bug ID: 38228
Summary: Wildstar game failed to download :
`winhttp:session_set_option 0` and `wine client
error:41b: pipe: Too many open files`
Product: Wine
Version: 1.7.38
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: major
Priority: P2
Component: winsock
Assignee: wine-bugs(a)winehq.org
Reporter: donanykey(a)gmail.com
Distribution: ---
Hi,
Wildstar 10days trial installer stops downloading after a while with errors
like this:
fixme:winhttp:session_set_option 0 (null) (null)
wine client error:41b: pipe: Too many open files
--
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=23750
Summary: SpongeBob SquarePants: Diner Dash 2 - mouse has pink
background
Product: Wine
Version: 1.2
Platform: x86
URL: http://arcade.nick.com/nick/gameinfo.jsp?s=SpongeBobDi
nerDash2
OS/Version: Linux
Status: NEW
Severity: trivial
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: austinenglish(a)gmail.com
Created an attachment (id=29763)
--> (http://bugs.winehq.org/attachment.cgi?id=29763)
screenshot
Looks like it's supposed to be an animated cursor, but the background is pink.
I'll attach a screenshot.
Terminal shows:
fixme:d3d:swapchain_init Add OpenGL context recreation support to
context_validate_onscreen_formats
err:ddraw:PixelFormat_WineD3DtoDD Can't translate this Pixelformat 58
err:ddraw:PixelFormat_WineD3DtoDD Can't translate this Pixelformat 64
err:ddraw:PixelFormat_WineD3DtoDD Can't translate this Pixelformat 58
err:ddraw:PixelFormat_WineD3DtoDD Can't translate this Pixelformat 64
fixme:d3d_surface:IWineD3DSurfaceImpl_BltOverride Implement hardware blit
between two surfaces on the same swapchain
fixme:d3d_surface:IWineD3DSurfaceImpl_BltOverride Implement hardware blit
between two surfaces on the same swapchain
fixme:d3d_surface:IWineD3DSurfaceImpl_BltOverride Implement hardware blit
between two surfaces on the same swapchain
fixme:d3d_surface:IWineD3DSurfaceImpl_BltOverride Implement hardware blit
between two surfaces on the same swapchain
err:ddraw:PixelFormat_WineD3DtoDD Can't translate this Pixelformat 58
err:ddraw:PixelFormat_WineD3DtoDD Can't translate this Pixelformat 64
--
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=37597
Bug ID: 37597
Summary: Text in wine control is truncated in most DPIs
Product: Wine
Version: 1.6.1
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: stu.axon(a)gmail.com
Distribution: ---
Created attachment 50033
--> https://bugs.winehq.org/attachment.cgi?id=50033
Text truncated during wrap.
Unless 96 DPI and using a theme, then text is wrapped unnecessarily.
Screenshot shows 96 and 120 DPI with Luna theme and without theme.
The text 'Add Remove Programs' becomes 'Add Rem... Programs' using other
settings it's possible for this to happen to many other items.
Possibly if a line is wrapped it should just have a hyphen, with ... only used
on the last line.
Possibly the icons should be spaced a bit more, wrapping could break '/' as
well as spaces.
--
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=39124
Bug ID: 39124
Summary: Paint Shop Pro X8 Installer hangs
Product: Wine
Version: 1.7.49
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: maiktapwagner(a)aol.com
Distribution: ---
Hello everyone,
Corel has developed a new installer for their Paint Shop Pro products. The
current version of Paint Shop Pro is X8.
With Windows set to Windows 7 in winecfg the installer starts up but eventually
hangs.
The following output is been kept thrown at me:
fixme:mshtml:OleInPlaceActiveObject_TranslateAccelerator (0x13bd58)->(0x32fa7c)
Could you take a look into this please?
Regards,
Maik
--
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=10841
Summary: Support for dynamic resolution changing
Product: Wine
Version: unspecified
Platform: Other
OS/Version: other
Status: UNCONFIRMED
Severity: enhancement
Priority: P2
Component: wine-x11driver
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: thedamocles(a)gmail.com
After a disscussion on this bug it appears the it would be great if Wine
supports dynamic resolution changing (just like windows when you swith between
a game and the desktop).
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=39533
Bug ID: 39533
Summary: Unhandled exception: page fault in 64-bit code
(0x00000001403651d1) in Soma.exe
Product: Wine-staging
Version: 1.7.53
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: blaiseg07(a)gmail.com
CC: erich.e.hoover(a)wine-staging.com, michael(a)fds-team.de,
sebastian(a)fds-team.de
Distribution: ---
Created attachment 52680
--> https://bugs.winehq.org/attachment.cgi?id=52680
soma.exe debug
Unhandled exception: page fault in 64-bit code (0x00000001403651d1) when
starting the windows version of the game Soma. See Debug Attachment.
--
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=28062
Summary: King's Bounty: The Legend - interface and all 3D
objects disappear in half-second after first level
loading
Product: Wine
Version: 1.3.26
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: runetmember(a)gmail.com
King' Bounty: The Legend 1.7 (Russian digital download version).
WINE 1.3.26.
Game start only with native d3dx9_36 (
http://bugs.winehq.org/show_bug.cgi?id=24725 ). After loading of first level
all 3D objects and interface disappear. Screenshot and log attached.
--
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=30487
Bug #: 30487
Summary: Add icons for 'My Network Places', 'My favorites'
Product: Wine
Version: 1.5.2
Platform: x86
OS/Version: Linux
Status: NEW
Severity: normal
Priority: P2
Component: shell32
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: fgouget(a)codeweavers.com
Classification: Unclassified
shell32 is missing some icons which some users find confusing.
Here is the list of missing icons:
/* FIXME: Following resource is not yet added */
IDI_SHELL_MY_NETWORK_PLACES ICON mydocs.ico
/* FIXME: Following resource is not yet added */
IDI_SHELL_FAVORITES ICON mydocs.ico
--
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=20961
Summary: RegEditX doesn't work in wine
Product: Wine
Version: 1.1.34
Platform: PC
URL: http://www.dcsoft.com/ftp/REGX2.EXE
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: t.artem(a)mailcity.com
Application description: RegEditX "extends" the Windows Registry Editor
(REGEDIT). A new history combo box and toolbar are inserted. You gain quick
navigation back to recently-visited keys, the ability to paste keys from the
Windows clipboard, and incrementally type the keys manually. In addition,
columns in the listbox are kept optimally sized.
Doesn't work in wine:
Internal error: could not find RegEdit window
--
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=30185
Bug #: 30185
Summary: SuperPower 2 demo crashes on launch
Product: Wine
Version: 1.4
Platform: x86
URL: http://www.gamefront.com/files/3631719/SuperPower_2_De
mo
OS/Version: Linux
Status: UNCONFIRMED
Keywords: download
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: gyebro69(a)gmail.com
Classification: Unclassified
Created attachment 39396
--> http://bugs.winehq.org/attachment.cgi?id=39396
terminal output
The installed demo, when started with joshua.exe, crashes immediately.
I get the same crash with older Wine versions as well (1.2.3, pre-1.0).
To install the demo I used Wine-1.4 because of bug #30182.
Fedora 16 x86
gcc version 4.6.2 20111027 (Red Hat 4.6.2-1) (GCC)
--
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=36884
Bug ID: 36884
Summary: Drakensang: The Dark Eye demo crashes on startup
(needs d3dx9_36.dll.D3DXCreateTeapot implementation)
Product: Wine
Version: 1.7.22
Hardware: x86
URL: http://www.gamershell.com/download_36990.shtml
OS: Linux
Status: NEW
Keywords: download
Severity: minor
Priority: P2
Component: directx-d3dx9
Assignee: wine-bugs(a)winehq.org
Reporter: austinenglish(a)gmail.com
Follow up to bug 35742. Now that D3DXCreateTorus is implemented, the game
crashes on start with a dialog box saying:
*** NEBULA ASSERTION ***\nprogrammer says: nD3D9Server::DeviceOpen():
D3DXCreateTeapot() failed!
and in the terminal (the only d3dx fixme):
fixme:d3dx:D3DXCreateTeapot (0x193100, 0x3242ec4, (nil)): stub
austin@aw25 ~ $ sha1sum Drakensang_DEMO_setup_ENGLISH.exe
2e47a2fbc7307e736394bf1d2b1a2f09c497c7a1 Drakensang_DEMO_setup_ENGLISH.exe
austin@aw25 ~ $ du -h Drakensang_DEMO_setup_ENGLISH.exe
501M Drakensang_DEMO_setup_ENGLISH.exe
austin@aw25 ~ $ wine --version
wine-1.7.22
--
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=37834
Bug ID: 37834
Summary: RtlSetCurrentDirectory_U prepends "UNC\" for network
paths; the resulting path is invalid
Product: Wine
Version: 1.7.33
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: minor
Priority: P2
Component: ntdll
Assignee: wine-bugs(a)winehq.org
Reporter: atakama0512(a)yahoo.com
Distribution: ---
Created attachment 50382
--> https://bugs.winehq.org/attachment.cgi?id=50382
cmd.exe output showing how UNC\ gets prepended when running cd \\server\share
Calling RtlSetCurrentDirectory_U with a network share argument like
"\\server\share" sets the current directory to "UNC\server\share". Subsequent
calls to GetCurrentDirectory will return the modified path.
The resulting path is invalid and unusable: attempting to read the directory or
writing a file to it results in ERROR_PATH_NOT_FOUND.
The bug can be reproduced using the internal command prompt, as seen in the
attachment.
>From what I've gathered from the source code, RtlSetCurrentDirectory_U calls
RtlDosPathNameToNtPathName_U, which prepends UncPfxW to the supplied path. The
last edits to dlls/ntdll/path.c were made in 2003-2004.
I stumbled across this behavior while investigating why Total Commander cannot
copy files to network shares. The sequence of calls in Total Commander is:
SetCurrentDirectory to the network path, then GetCurrentDirectory (which
returns the modified path in the form "UNC\server\share") and then it builds
the destination parameter by concatenating this path with the destination file
name. This gets passed to CopyFileEx, which fails with ERROR_PATH_NOT_FOUND
because of the "UNC\" prefix.
--
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=38561
Bug ID: 38561
Summary: Painkiller crashes when loading a save
Product: Wine
Version: 1.7.41
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: fremenzone(a)poczta.onet.pl
Distribution: ---
Created attachment 51440
--> https://bugs.winehq.org/attachment.cgi?id=51440
Crash log
Loading a saved game in Painkiller: Black Edition bought on GOG.com does not
work. Loading freezes at some point (always the same) and pressing a key
results in a crash. Wine version: wine-1.7.41-197-gf7e0927. Attaching log.
--
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=35371
Bug ID: 35371
Summary: Battlefield 2: Wine crashes on mic setup
Product: Wine
Version: 1.7.10
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: crazy.just(a)verizon.net
Classification: Unclassified
Created attachment 47174
--> http://bugs.winehq.org/attachment.cgi?id=47174
Program Error Details
Battlefield 2: Wine crashes on mic setup.
--
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=36763
Bug ID: 36763
Summary: Rogue Squadron 3D 1.3: Crashes with game resolutions
above 640x480
Product: Wine
Version: 1.7.20
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: dev(a)ovocean.com
Created attachment 48821
--> http://bugs.winehq.org/attachment.cgi?id=48821
Console output. Crash after line 19
If choosing a resolution above 640x480 in the game settings menu, the game
crashes at the start of missions, when the set resolution gets used.
System used:
Nvidia GeForce GTX 660M with Nvidia drivers v331.38
Xubuntu 14.04
--
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=36113
Bug ID: 36113
Summary: d3d9/device test has a leak
Product: Wine
Version: 1.7.17
Hardware: x86
OS: Linux
Status: NEW
Keywords: download, source, testcase
Severity: minor
Priority: P2
Component: directx-d3d
Assignee: wine-bugs(a)winehq.org
Reporter: austinenglish(a)gmail.com
==17962== 34 bytes in 2 blocks are definitely lost in loss record 309 of 1,416
==17962== at 0x4006B11: malloc (in
/usr/lib/valgrind/vgpreload_memcheck-x86-linux.so)
==17962== by 0x4E8E2B27: strdup (in /usr/lib/libc-2.18.so)
==17962== by 0x67C5806: ??? (in /usr/lib/dri/i965_dri.so)
==17962== by 0x67CE8F0: ??? (in /usr/lib/dri/i965_dri.so)
==17962== by 0x67D7587: ??? (in /usr/lib/dri/i965_dri.so)
==17962== by 0x6661EC8: ??? (in /usr/lib/dri/i965_dri.so)
==17962== by 0x63BDC15: shared_dispatch_stub_482 (in
/usr/lib/libglapi.so.0.0.0)
==17962== by 0x4F5BAD5: shader_glsl_compile (glsl_shader.c:330)
==17962== by 0x4F68B3F: shader_glsl_generate_vshader (glsl_shader.c:4588)
==17962== by 0x4F693E4: find_glsl_vshader (glsl_shader.c:4767)
==17962== by 0x4F6C88A: set_glsl_shader_program (glsl_shader.c:5793)
==17962== by 0x4F6E096: shader_glsl_select (glsl_shader.c:6149)
==17962== by 0x4F2EF12: context_apply_draw_state (context.c:2997)
==17962== by 0x4F581D6: draw_primitive (drawprim.c:664)
==17962== by 0x4F2F685: wined3d_cs_exec_draw (cs.c:291)
==17962== by 0x4F30A33: wined3d_cs_st_submit (cs.c:893)
==17962== by 0x4F2F6F2: wined3d_cs_emit_draw (cs.c:308)
==17962== by 0x4F3EFC3: wined3d_device_draw_primitive (device.c:3265)
==17962== by 0x4973D29: d3d9_device_DrawPrimitive (device.c:2101)
==17962== by 0x4C27D7C: test_null_stream (device.c:1952)
==17962==
--
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=11099
Summary: custom checkbox not displayed
Product: Wine
Version: 0.9.52.
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: stuart(a)gathman.org
All the taxact versions use a custom checkbox that draws a large X for on
screen tax forms. These always display as blank. They are drawn correctly on
printout. The appdb entry is
http://appdb.winehq.org/objectManager.php?sClass=application&iId=1265
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=9422
Summary: Regression from 0.9.36 to 0.9.42/43 when running visio
2003
Product: Wine
Version: 0.9.43.
Platform: Other
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-programs
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: jokester01au(a)yahoo.com.au
Created an attachment (id=7748)
--> (http://bugs.winehq.org/attachment.cgi?id=7748)
Log trace of failed run under 0.9.43
This may or may not be related to bug #5163.
On 0.9.36 I have a working installation of visio 2003.
After upgrading to 0.9.42 visio ceases to work, failing with the message "iopl
not enabled".
Ditto for 0.9.43.
After reverting back to 0.9.36, visio 2003 again works.
Word and Excel 2003 seem to work happily on all of these versions of wine.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=35828
Bug ID: 35828
Summary: Unable to connect to EA Origin
Product: Wine
Version: 1.7.14
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: berillions(a)gmail.com
Created attachment 47837
--> http://bugs.winehq.org/attachment.cgi?id=47837
No Internet connection
Hi,
Since the latest version of EA Origin, it's impossible to connect to my Origin
account. When the connection's window appears, i have a message told me :
- In French : Connexion en ligne actuellement indisponible
- In English : Online connection actually unavaible.
You can see the screen for the message.
I installed EA Origin into a fresh wineprefix and it's the first time that i
have this message. If i launch +wininet debug channel, i have this trace in my
log :
trace:wininet:InternetGetConnectedState (0x32d598, 0x00000000)
warn:wininet:InternetGetConnectedState always returning LAN connection.
I tried with Wine 1.7.10 and i can confirm that it's not a regression. The
previous version of EA Origin worked with this old wine version.
Thanks,
Max
--
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=37850
Bug ID: 37850
Summary: fallout 2: problem with handling file permissions ?
Product: Wine
Version: 1.7.33
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: minor
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: galtgendo(a)o2.pl
Distribution: ---
There seems to be an odd quirk in falout 2 when running it under wine.
It's documented on falloutmods.wikia.com/wiki/F2RP_Technical_Info.
I've tested it with unofficial 1.02.31 patch, which is F2RP stripped down to
bugfixes and graphic upgrade only (from the same author). It's actually
semi-official, as (AFAIK) GOG version uses an older version of that patch.
The exact steps were:
1. install fallout 2
2. get the *manual* version of the patch
3. read the instruction of the patch and strip them down as much as possible:
- copy the patch files and apply master.dat patch
- copy only the executable and ddraw.dll wrapper lib (from Win7 set), setup
native override for that wrapper, set 'Mode=4' in ddraw.ini
- get native d3dcompiler_43.dll (due to unimplemented fx_2_0 effect) and
d3dx9_36.dll (due to an error with a message, that doesn't say anything
meaningful)
Now, after that you should be able to start the game, but if you try to save
it, you'll run into the mentioned quirk. While most of the instructions on the
mentioned site seem a bit out of date, the one specific bit is still required,
even though it doesn't make much sense and is obviously irrelevant on Windows.
Now, as you try to save, the game will return "unable to save" dialog and no
*valid* savegame will be created, even though quite a few files in the save dir
will.
This problem is fixed by the snippet mentioned on that site:
chmod 444 [dD]ata/[pP]roto/[iI]tems/* [dD]ata/[pP]roto/[cC]ritters/*
Which actually stands for 'chmod a-w ...'
Afterwards, saving works as expected.
Now, as Windows obviously doesn't need anything alike, why does wine ?
Even if that's caused by some hacky solution in the original executable, this
would suggest something being subtly broken in some quite low level wine
function (at least that's what it seems to 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.
http://bugs.winehq.org/show_bug.cgi?id=17708
Summary: Splinter cell double agent doesn't render correctly
Product: Wine
Version: 1.1.16
Platform: All
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: puciek(a)gmail.com
Created an attachment (id=19904)
--> (http://bugs.winehq.org/attachment.cgi?id=19904)
Log from start till i had to kill the game (compressed because its 25mb)
Game renders only part of ui and character, rest is just darkness.
--
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=29700
Bug #: 29700
Summary: C&C TiberianSun and RedAlert 2 game graphics rendering
freezes when NOT moving the mouse.
Product: Wine
Version: 1.3.37
Platform: x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: pclaves(a)web.de
Classification: Unclassified
When starting a game in C&C Tiberian Sun or RedAlert 2 (same Game Engine) the
screen (or Window) is not refreshed unless the mouse is moved around. The Game
is progressing (albeit slow), if the mouse is moved the screen is refreshed and
the player units jump the the new positions.
Tested with Wine 1.3.37
This seems to be related to http://bugs.winehq.org/show_bug.cgi?id=14438 but
with the exact opposite effect.
I tried the tricks from this report and the AppDb entry but the have no effect.
The bug 14438 report metions that the DIB engine should have fixed that bug,
but it apparently created a regression worse than 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.
http://bugs.winehq.org/show_bug.cgi?id=18759
Summary: RoughDraft 3's Word Count feature always says zero
Product: Wine
Version: 1.1.22
Platform: PC
URL: http://www.salsbury.f2s.com/
OS/Version: Linux
Status: NEW
Keywords: download
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: dank(a)kegel.com
A user reported in http://jainakay.livejournal.com/41083.html
that Rough Draft's word count feature fails, always reporting
that the document has zero words.
Sure enough, I tried Rough Draft 3, and he's right.
--
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=26768
Summary: oleaut32 warnings on x86-64
Product: Wine
Version: unspecified
Platform: x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: minor
Priority: P2
Component: oleaut32
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: adys.wh(a)gmail.com
../../../dlls/oleaut32/tmarshal.c:426:3: warning: #warning You need to
implement stubless proxies for your architecture
../../../dlls/oleaut32/tmarshal.c: In function ‘serialize_param’:
../../../dlls/oleaut32/tmarshal.c:717:279: warning: cast to pointer from
integer of different size
../../../dlls/oleaut32/tmarshal.c:793:73: warning: cast to pointer from integer
of different size
../../../dlls/oleaut32/tmarshal.c:794:56: warning: cast to pointer from integer
of different size
../../../dlls/oleaut32/tmarshal.c:800:50: warning: cast to pointer from integer
of different size
../../../dlls/oleaut32/tmarshal.c:802:7: warning: cast to pointer from integer
of different size
../../../dlls/oleaut32/tmarshal.c:802:41: warning: cast to pointer from integer
of different size
../../../dlls/oleaut32/tmarshal.c:807:51: warning: cast to pointer from integer
of different size
../../../dlls/oleaut32/tmarshal.c:809:7: warning: cast to pointer from integer
of different size
../../../dlls/oleaut32/tmarshal.c:809:41: warning: cast to pointer from integer
of different size
../../../dlls/oleaut32/tmarshal.c:895:92: warning: cast to pointer from integer
of different size
../../../dlls/oleaut32/tmarshal.c: In function ‘deserialize_param’:
../../../dlls/oleaut32/tmarshal.c:1076:12: warning: cast from pointer to
integer of different size
../../../dlls/oleaut32/tmarshal.c:1079:78: warning: cast to pointer from
integer of different size
../../../dlls/oleaut32/tmarshal.c:1086:15: warning: cast from pointer to
integer of different size
../../../dlls/oleaut32/tmarshal.c:1181:11: warning: cast from pointer to
integer of different size
../../../dlls/oleaut32/tmarshal.c:1189:16: warning: cast to pointer from
integer of different size
../../../dlls/oleaut32/tmarshal.c: In function ‘init_proxy_entry_point’:
../../../dlls/oleaut32/tmarshal.c:1699:17: warning: unused variable ‘xasm’
../../../dlls/oleaut32/tmarshal.c: At top level:
../../../dlls/oleaut32/tmarshal.c:1317:1: warning: ‘xCall’ defined but not used
--
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=39023
Bug ID: 39023
Summary: Final Fantasy XI Using a Bluetooth PS3 Controller
crashes the game.
Product: Wine
Version: 1.7.47
Hardware: x86-64
OS: Mac OS X
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: wine(a)sharpner.de
Using a ps3 bluetooth controller and setting it up with the ffxiutils.
Configuration works, but the game crashes with gamepad enabled.
fixme:qtdatahandler:myComponentRoutineProc unhandled select 0x44
wine.bin(820,0x401f4000) malloc: *** error for object 0x4021c830: double free
*** set a breakpoint in malloc_error_break to debug
wine: Assertion failed at address 0x000b:0x988b669a (thread 0025), starting
debugger...
1.7.48 is also affected, here it wasn't enough to disable gamepad in the
configuration but I also had to disable bluetooth.
--
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=30522
Bug #: 30522
Summary: Jupiter shows too small, unreadable fonts
Product: Wine
Version: 1.5.2
Platform: x86
URL: http://pity.elfin.pl/pliki/Jupiter/Jupiter2011/std/1.0
.5.6/Jupiter2011_std_1.0.5.exe
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: washuu(a)eastnews.com.pl
Classification: Unclassified
Created attachment 39929
--> http://bugs.winehq.org/attachment.cgi?id=39929
sample data file with bogus numbers
Jupiter is free, downloadable program for calculating taxes in Poland, it's
quite pupular.
I found using it under Wine quite unconfortable, because of a few bugs. Here is
one of them:
- install the application. In my case it went without any glitches.
- run the application.
- open the sample data file, using menu "Plik" ("file") and "Otworz" ("open").
- wait a few seconds to open data file, when it is loaded you see some text in
the middle, starting with "dziekujemy za skorzystanie z programu".
- click tab "Formularze" ("forms") and see very tiny, unreadable letters on
the form. On win32, the forms are readable and nicely formatted. I can create
some screenshots, but nevertheless the fonts in Wine are very small.
My wine is 1.5.2, running on Ubuntu 11.10 32bit.
--
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=37959
Bug ID: 37959
Summary: Guild Wars 2 freezes on startup
Product: Wine
Version: 1.7.33
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: emailofchris(a)gmail.com
Distribution: ---
Created attachment 50572
--> https://bugs.winehq.org/attachment.cgi?id=50572
Terminal output when running Guild Wars 2.
The launcher starts, but when I login and click Play, the music from the game
begins to play but nothing is visible. Also I can't alt-tab out as GW2 keeps
the focus, so I have to switch to a new tty in order to terminate it. With a
virtual desktop, as recommended on the AppDB, it still won't start, but it does
become easier to terminate it without a tty switch.
Using Arch Linux with KDE Plasma 5.
--
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=14078
Summary: Rewrite typelib marshaller on top of NDR functions
Product: Wine
Version: CVS/GIT
Platform: Other
OS/Version: other
Status: NEW
Severity: normal
Priority: P2
Component: ole
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: dank(a)kegel.com
[Copied from wine-devel.]
Dan K. wrote in
http://www.winehq.org/pipermail/wine-devel/2008-June/066540.html
--- snip ---
While looking at the valgrind warning in
http://kegel.com/wine/valgrind/logs-2008-06-20/vg-oleaut32_tmarshal.txt
Conditional jump or move depends on uninitialised value(s)
at serialize_param (tmarshal.c:736)
by serialize_param (tmarshal.c:744)
by xCall (tmarshal.c:1414)
by ???
by func_tmarshal (tmarshal.c:1179)
by run_test (test.h:449)
by main (test.h:498)
Uninitialised value was created by a stack allocation
at test_typelibmarshal (tmarshal.c:762)
The problem happens during a call to this method
where widget is a pointer to an uninitialized pointer
which will receive the pointer to the widget:
interface IKindaEnumWidget : IUnknown
{
HRESULT Next(
[out] IWidget **widget);
I discovered that the attached patch prevented the problem.
I don't quite understand why; at first glance,
widget is an out parameter from the function,
why would it be dereferenced while serializing
the call?
--- snip ---
Rob Shearman wrote:
http://www.winehq.org/pipermail/wine-devel/2008-June/066571.html
--- snip ---
It's a bug in the typelib marshaller. It doesn't check whether a
VT_PTR type is actually an interface pointer and not access it on
input when the parameter is an [out] parameter. Note that because of
the memory re-use semantics it is legal to access memory passed in to
a remote function, even when the parameter is [out].
I think it's getting close to the time to reimplement the typelib
marshaller on top of NDR functions so that we don't have to implement
these subtleties twice, would improve performance and would reduce the
amount of code.
--- snip ---
--
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=39253
Bug ID: 39253
Summary: From Dust crashes when loading the menu
Product: Wine
Version: 1.7.42
Hardware: x86
OS: Linux
Status: NEW
Keywords: regression
Severity: normal
Priority: P2
Component: directx-d3d
Assignee: wine-bugs(a)winehq.org
Reporter: gyebro69(a)gmail.com
CC: stefan(a)codeweavers.com
Regression SHA1: 7109bebd024ee68ec2b3ef0a6b29e72ded08abc0
Distribution: ---
Created attachment 52315
--> https://bugs.winehq.org/attachment.cgi?id=52315
terminal output
Prerequisites to start the game: native d3dx9 (d3dx9_43.dll) and xaudio2.
The game shows the Ubisoft logo then comes a loading screen and the game
crashes before the main menu appears. There is no demo version available.
Regression introduced by
commit 7109bebd024ee68ec2b3ef0a6b29e72ded08abc0
Author: Stefan Dösinger <stefan(a)codeweavers.com>
Date: Sun Apr 26 16:09:10 2015 +0200
wined3d: Move volume DXTn handling to apply_format_fixups.
Reproduced with nvidia binary driver 340.93 and nouveau/mesa from git.
wine-1.7.51-48-ge28d6b2
Fedora 22 32-bit
Nvidia Geforce 250 / OpenGL renderer string: Gallium 0.4 on NV92
--
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=34967
Bug #: 34967
Summary: Microsoft .NET 2.0 (sp1) Framework (x64): hangs after
install
Product: Wine
Version: 1.7.6
Platform: x86-64
URL: http://www.microsoft.com/en-us/download/details.aspx?i
d=6041
OS/Version: Linux
Status: NEW
Keywords: dotnet, download, Installer, win64
Severity: minor
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: austinenglish(a)gmail.com
Classification: Unclassified
Created attachment 46595
--> http://bugs.winehq.org/attachment.cgi?id=46595
backtrace
Similar to bug 30162, but this time it's dotnet20sp1 (64-bit)
To reproduce:
rm -rf .wine
WINEARCH=win64 wineboot
wine64 uninstaller # remove mono
wget
http://download.microsoft.com/download/a/3/f/a3f1bf98-18f3-4036-9b68-8e6de5…
wine64 NetFx64.exe
install .Net 2.0 (I saw it hang here in previous runs, but not lately. Not sure
if it's a race, or I did something wrong).
then sp1:
wget
http://download.microsoft.com/download/9/8/6/98610406-c2b7-45a4-bdc3-9db1b1…
wine64 NetFx20SP1_x64.exe
it should install fine, but will hang on completion:
[austin@localhost winetricks]$ ps u | grep \\.exe
austin 10465 0.1 0.9 2657616 9496 pts/2 Sl+ 19:20 0:00
Y:\dotnet20sp1\NetFx20SP1_x64.exe
austin 10474 1.5 3.7 2680516 38232 pts/2 S+ 19:20 0:05
c:\d9fc34cf222bec46bf31\setup.exe
austin 11599 0.0 0.0 112640 952 pts/1 S+ 19:26 0:00 grep
--color=auto \.exe
Eventually, you'll get a debugger notice, mentioning mscorsvw. The terminal
output is brief:
fixme:ngen:wmain stub:
L"C:\\windows\\Microsoft.NET\\Framework\\v2.0.50727\\ngen.exe" L"queue"
L"pause"
fixme:ngen:wmain stub:
L"C:\\windows\\Microsoft.NET\\Framework64\\v2.0.50727\\ngen.exe" L"queue"
L"pause"
fixme:ngen:wmain stub:
L"C:\\windows\\Microsoft.NET\\Framework\\v2.0.50727\\ngen.exe" L"queue"
L"pause"
fixme:ngen:wmain stub:
L"C:\\windows\\Microsoft.NET\\Framework64\\v2.0.50727\\ngen.exe" L"queue"
L"pause"
fixme:ngen:wmain stub:
L"C:\\windows\\Microsoft.NET\\Framework\\v2.0.50727\\ngen.exe" L"queue"
L"pause"
fixme:ngen:wmain stub:
L"C:\\windows\\Microsoft.NET\\Framework64\\v2.0.50727\\ngen.exe" L"queue"
L"pause"
err:ole:CoRevokeClassObject called from wrong apartment, should be called from
16f00000170
# hangs here
fixme:ngen:wmain stub:
L"C:\\windows\\Microsoft.NET\\Framework\\v2.0.50727\\ngen.exe" L"queue"
L"continue"
fixme:ngen:wmain stub:
L"C:\\windows\\Microsoft.NET\\Framework64\\v2.0.50727\\ngen.exe" L"queue"
L"continue"
fixme:advapi:InitiateSystemShutdownExW (null) L"" 0 0 1 -2147483648
I'll attach the backtrace I got (though it looks like it's a 32-bit process?).
--
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=19016
Summary: Unhandled type TKIND_COCLASS in oleaut
serialze_param() and deserialize_param()
Product: Wine
Version: 1.1.24
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: oleaut32
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: joshudson(a)gmail.com
fixme:ole:serialize_param unhandled switch cases tattr->typekind 5
This causes Word Automation from .NET to not work.
Tell me how to get what logs you want and I'll be happy to provide them.
--
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=35663
Bug ID: 35663
Summary: SWAT 3: Screen Flickering
Product: Wine
Version: 1.7.12
Hardware: Other
OS: Mac OS X
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: ipickert55(a)gmail.com
SWAT 3 has intense screen flickering ingame, menus work just fine it is only
ingame. I have no registry settings that have been set, the only thing is a
-nointro flag to make sure the game doesnt crash at startup.
--
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=30801
Bug #: 30801
Summary: need for speed underground 2 [full version] unusable
because of incorrect graphics render
Product: Wine
Version: 1.5.5
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: kaktus9(a)gmail.com
Classification: Unclassified
Created attachment 40339
--> http://bugs.winehq.org/attachment.cgi?id=40339
screen shown after pressing enter after intro movie and my system specs by
hardinfo program in a zip
after installing need for speed underground 2 into wine [game installs ok] on
startup either invalid parameters passed wine error window appears, or after
multiple tries game starts, but after intro movie splash screen shown is
lacking any form of text/fonts. after pressing enter to get into main menu of
need for speed underground 2 either black screen is shown, or after another
enter press game goes to state shown by screenshot attached below, only1 car
image no ui whatsoever that makes game unusable
tested both under wine default for ubuntu 12.04 -1.4 and wine 1.5.5 in both
versions bug occurs
i'm using a HP 6735b laptop with raden 3200 HD on board, when tested on exact
same machine with windows 7 game runs perfectly on max settings so it is not
cause of too weak hardware
this was tested under FULL version v.1.0
demo may be found here http://www.gamefront.com/files/3673931
i use drivers as follows stated bny hardinfo program
-Version-
Kernel : Linux 3.2.0-24-generic-pae (i686)
Distribution : Ubuntu 12.04 LTS
my computer full specification can be found at
http://h10010.www1.hp.com/wwpc/us/en/sm/WF06b/321957-321957-64295-321838-39…
below i attach in zip archive screenshot and hardinfo program html report on my
system
--
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=35675
Bug ID: 35675
Summary: Bad textures in World of Tanks
Product: Wine
Version: 1.7.13
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: mzettik(a)gmail.com
Created attachment 47636
--> http://bugs.winehq.org/attachment.cgi?id=47636
Screenshots of bad textures on tanks
I'm running World of Tanks with latest wine 1.7.13.
WoT after update to 8.11 sometimes bad show textures on tanks (in garage and in
game too). In 8.10 no problems. I wrote to WoT bugs, but they not officialy
support linux and I cannot send info from dxdiag - not works.
I test completly reinstall WoT (via Play on Linux) and still bad textures
Screenshots in attachements...
--
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=38394
Bug ID: 38394
Summary: Eador: Genesis crashes on exit (only in fullscreen
mode)
Product: Wine
Version: 1.7.32
Hardware: x86
URL: http://files.games.1c.ru/eador/demo/eador_demo_setup.e
xe
OS: Linux
Status: NEW
Keywords: download, regression
Severity: normal
Priority: P2
Component: directx-d3d
Assignee: wine-bugs(a)winehq.org
Reporter: gyebro69(a)gmail.com
CC: stefan(a)codeweavers.com
Regression SHA1: f6dde7062413a1dfdd71acc92c5178ac66f3ade0
Distribution: ---
Created attachment 51247
--> https://bugs.winehq.org/attachment.cgi?id=51247
terminal output
Eador: Genesis crashes on exit when I'm running the game in Wine's traditional
fullscreen mode and the game is set up to run in fullscreen. No crash occurs in
virtual desktop mode. The crash happens quite frequently (9 out of 10 times)
but sometimes the game exits properly.
Regression introduced by
f6dde7062413a1dfdd71acc92c5178ac66f3ade0 is the first bad commit
commit f6dde7062413a1dfdd71acc92c5178ac66f3ade0
Author: Stefan Dösinger <stefan(a)codeweavers.com>
Date: Tue Nov 18 21:26:57 2014 +0100
wined3d: Restore the display mode on focus change.
I tried the patch from bug #38064, but it didn't help.
Steps to reproduce the problem in the Russian demo:
1. installation should be straightforward despite of the Cyrillic text in the
installer.
2. before running the game edit the file 'Eador.cfg' and change the option
'Windowed' to '0'
3. start the game with Eador.exe, press <Esc> to skip the intro. In the menu
click the bottom-most button (выход), then click the button in the lower right
corner. The game crashes on exit.
eador_demo_setup.exe
sha1: 36bc92d257839c1232ecf55e873fcb44c04eb319
wine-1.7.40-99-gdc22283
Fedora 21 x86 / XOrg 1.16.3 / XFCE 4.10 / Nvidia binary drivers 340.76
--
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=25066
Summary: NFS Porsche: gimme.dll prevents the game from starting
Product: Wine
Version: 1.3.6
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: minor
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: lukasz.wojnilowicz(a)gmail.com
Created an attachment (id=31786)
--> (http://bugs.winehq.org/attachment.cgi?id=31786)
Terminal output on wine-1.3.6-240-g791b22a
Steps to reproduce:
1) remove ~/.wine
2) install NFS Porsche Unleashed
3) patch the game with NFS5-3.5.20040310.ZIP
4) wine Porsche.exe driver=dx7z
Behaviour:
The game crashes after splash screen.
Expected behaviour:
The game shouldn't crash.
Workaround:
rename gimme.dll to gimme.dll.bak
--
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=38124
Bug ID: 38124
Summary: Can't enable visual style in a DLL.
Product: Wine
Version: 1.7.37
Hardware: x86
OS: Linux
Status: NEW
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: jactry92(a)gmail.com
Distribution: ---
Created attachment 50815
--> https://bugs.winehq.org/attachment.cgi?id=50815
testcase
Hi all,
I tired to enable visual style[1] for dialog in shell32.dll and comdlg32.dll.
Normally, a dialog will be themed by visual style when comctl32.dll v6 and
InitCommonControls() was used.
I implemented a dialog in a dll, and used 'Activation Contexts'[2] to let the
dll depend on comctl32.dll and call InitCommonControls(), but when the dialog
was called by another program, the dialog didn't be themed.
testcase.tar.gz is testcase I wrote for reproducing this bug.
You can reproduce the bug follow:
1. Install and enable a visual style theme in winecfg;
2. Download the testcase, unarchive it and make;
3. $ wine main.exe, click the 'OK' button. You can see button in the main
windows was themed but two buttons in the dialog was not themed. (as picture
testcase_wine.png showing)
Expected result:
The dialog also is themed, as picture testcase_windows.png showing.
[1]
https://msdn.microsoft.com/en-us/library/windows/desktop/bb773187(v=vs.85).…
[2] https://msdn.microsoft.com/en-us/library/aa374153(v=vs.85).aspx
--
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=30511
Bug #: 30511
Summary: Guild Wars 2 launcher crashes with "assertion
m_ioCount failed"
Product: Wine
Version: 1.5.2
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: rmlipman(a)gmail.com
Classification: Unclassified
Created attachment 39906
--> http://bugs.winehq.org/attachment.cgi?id=39906
launcher crash log
After downloading around 1GB of data, the Guild Wars 2 launcher crashes with
"assertion: m_ioCount". I can restart the launcher and it picks up from where
it left off, so eventually it does finish. A crash log from the game is
attached.
I've also seen this crash very infrequently on the login screen. The beta
hasn't started yet so I don't know if the crash occurs ingame as well.
--
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=35862
Bug ID: 35862
Summary: d3d{8,9}/visual tests fail on mesa 10.0.4
Product: Wine
Version: 1.7.15
Hardware: x86
OS: Linux
Status: NEW
Keywords: download, source, testcase
Severity: normal
Priority: P2
Component: directx-d3d
Assignee: wine-bugs(a)winehq.org
Reporter: austinenglish(a)gmail.com
d3d8:
visual.c:2728: Test failed: Expected color 0x0000ff00 at 400,60, got
0x000000ff.
visual.c:2728: Test failed: Expected color 0x00ff0000 at 560,60, got
0x000000ff.
visual.c:2728: Test failed: Expected color 0x0000ff00 at 400,180, got
0x000000ff.
visual.c:2728: Test failed: Expected color 0x00ff0000 at 560,180, got
0x000000ff.
visual.c:2728: Test failed: Expected color 0x0000ff00 at 80,300, got
0x000000ff.
visual.c:2728: Test failed: Expected color 0x0000ff00 at 240,300, got
0x000000ff.
visual.c:2728: Test failed: Expected color 0x0000ff00 at 400,300, got
0x000000ff.
visual.c:2728: Test failed: Expected color 0x00ff0000 at 560,300, got
0x000000ff.
visual.c:2728: Test failed: Expected color 0x00ff0000 at 80,420, got
0x000000ff.
visual.c:2728: Test failed: Expected color 0x00ff0000 at 240,420, got
0x000000ff.
visual.c:2728: Test failed: Expected color 0x00ff0000 at 400,420, got
0x000000ff.
visual.c:2728: Test failed: Expected color 0x00ff0000 at 560,420, got
0x000000ff.
d3d9:
visual.c:12337: Test failed: Expected color 0x0000ff00 at 400,60, got
0x000000ff.
visual.c:12337: Test failed: Expected color 0x00ff0000 at 560,60, got
0x000000ff.
visual.c:12337: Test failed: Expected color 0x0000ff00 at 400,180, got
0x000000ff.
visual.c:12337: Test failed: Expected color 0x00ff0000 at 560,180, got
0x000000ff.
visual.c:12337: Test failed: Expected color 0x0000ff00 at 80,300, got
0x000000ff.
visual.c:12337: Test failed: Expected color 0x0000ff00 at 240,300, got
0x000000ff.
visual.c:12337: Test failed: Expected color 0x0000ff00 at 400,300, got
0x000000ff.
visual.c:12337: Test failed: Expected color 0x00ff0000 at 560,300, got
0x000000ff.
visual.c:12337: Test failed: Expected color 0x00ff0000 at 80,420, got
0x000000ff.
visual.c:12337: Test failed: Expected color 0x00ff0000 at 240,420, got
0x000000ff.
visual.c:12337: Test failed: Expected color 0x00ff0000 at 400,420, got
0x000000ff.
visual.c:12337: Test failed: Expected color 0x00ff0000 at 560,420, got
0x000000ff.
wine-1.7.15-32-gebd5f96
OpenGL core profile version string: 3.3 (Core Profile) Mesa 10.0.4
00:02.0 VGA compatible controller: Intel Corporation 3rd Gen Core processor
Graphics Controller (rev 09) (prog-if 00 [VGA controller])
--
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=26692
Summary: Cities In Motion Demo: Frame Rate is 10-20% of to
windows performance when anitaliasing set to max (6x)
Product: Wine
Version: 1.3.17
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: minor
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: fjuni5(a)msn.com
Demo version can be downloaded via
http://www.pcgamestore.com/games/cities-in-motion-nbsp/trial/cim-demo-1-0-8…
or installed automatically using cim_demo verb in winetricks since r451.
Framerate is roughly 10-20% of the window's counterpart when running at 6x
antialiasing. Other rendering options such as anisotropy and shadow quality do
not affect performance noticeably. Workaround is setting AA to 2x.
System:
Dual boot Ubuntu 10.10 and Win 7
CD2 2.66 w/ 4 GB Ram
Nvidia 9600 GSO running 260.19.06
--
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=34212
Bug #: 34212
Summary: Child Windows stucks when running my windows app with
wine
Product: Wine
Version: unspecified
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: critical
Priority: P2
Component: user32
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: rmrbranco(a)gmail.com
Classification: Unclassified
When programming language basic liberty and create applications with child
window
and run with linux / wine, child windows opens but does not have focus,
the same windows are locked unable to do anything.
In Attached leave the output when I run my app on terminal, leave source
and a compilation in the language I'm using.
Rui
--
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=13092
Summary: Word Viewer in wine displayes hebrew reversed
Product: Wine
Version: 0.9.59.
Platform: PC-x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: ran.rutenberg(a)gmail.com
Hi,
I'm using wine 0.9.59 on Ubuntu 8.04. After installing Word Viewer (2003), and
opening a document written in Hebrew, the order of the letters in each word is
reversed, but the order of the words is right.
For example if there are two words that should appear like this (Hebrew is
written from right to left):
"FED CBA"
then on the Word Viewer in wine they appear like this:
"DEF ABC"
AFAIK this problem also occurs on other linux distros (I've seen it also on
Gentoo).
--
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=29705
Bug #: 29705
Summary: RichView doesn't print italics
Product: Wine
Version: 1.3.37
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: sundoulos2(a)gmail.com
Classification: Unclassified
Created attachment 38548
--> http://bugs.winehq.org/attachment.cgi?id=38548
unicode text file with italics
ActionTest (which uses RichView class) works fine using ANSI files/text. Not so
with Unicode. If I copy Unicode text and paste it into ActionTest:
Text that is Italic shows properly in the text editor and print preview
but prints out as normal rather than italics. All other text prints as shown in
the preview.
ActionTest can be downloaded from:
http://trichview.com/resources/actions/actiontest.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=22244
Summary: PlantsVsZoombies fail
Product: Wine
Version: 1.1.41
Platform: x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: major
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: d.okias(a)gmail.com
Created an attachment (id=27163)
--> (http://bugs.winehq.org/attachment.cgi?id=27163)
log_from_nouveau
Tested on R300 and Nouveau, both fail same. Both Gentoo.
--
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=37765
Bug ID: 37765
Summary: Starcraft II - Alt+Tab Switching windows makes the
program crash
Product: Wine
Version: 1.7.33
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: critical
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: ema.oriani(a)gmail.com
Distribution: ---
Upon playing StarCraft II, if one Alt+Tab current wine window, no new frames
are being drawn and music/sounds disappear from SC2 window, then if one goes
back into SC2 window, nothing happens but cursor can be moved.
This happens when virtual desktop is emulated or not, with any combination of
"Wine configuration" --> "Graphics".
My rig is:
i7 core, 32 GB RAM, nVidia GTX 680 (drivers 343.36), Ubuntu 14.04
X.Org X Server 1.15.1
Release Date: 2014-04-13
X Protocol Version 11, Revision 0
Build Operating System: Linux 3.2.0-70-generic x86_64 Ubuntu
Current Operating System: Linux scv 3.13.0-34-generic #60-Ubuntu SMP Wed Aug 13
15:45:27 UTC 2014 x86_64
Kernel command line: BOOT_IMAGE=/boot/vmlinuz-3.13.0-34-generic
root=UUID=eb9641e6-e704-442d-8586-746b8363c391 ro quiet splash
Build Date: 10 December 2014 06:15:52PM
xorg-server 2:1.15.1-0ubuntu2.6 (For technical support please see
http://www.ubuntu.com/support)
Current version of pixman: 0.30.2
--
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=30675
Bug #: 30675
Summary: Rapture3D Speaker layout crashes when drawing /
painting controls
Product: Wine
Version: 1.5.2
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: linards.liepins(a)gmail.com
Classification: Unclassified
Created attachment 40163
--> http://bugs.winehq.org/attachment.cgi?id=40163
First log.
After installing Rapture3D Spkear Layout configuration tool together with Dirt2
Demo, I check out if it is possible to upen it... unfortinetly not. Attaching
bug report / stack trace ...
--
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=33622
Bug #: 33622
Summary: Counter-Strike Source Sound,Weapons Crashes
Product: Wine
Version: unspecified
Platform: Other
OS/Version: other
Status: UNCONFIRMED
Severity: critical
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: likeaninja03(a)yahoo.com
Classification: Unclassified
Created attachment 44502
--> http://bugs.winehq.org/attachment.cgi?id=44502
Information after its crashes
my weapons are sometimes invisible and some of the models are invisible
when i switch my weapons really fast it crashes(tat never happend to me before
the upadte)and i think the sound crashes the game not sure about it (most
certain)
--
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=37317
Bug ID: 37317
Summary: Tomb Raider 2013 (on Steam) crashes after launch
Product: Wine
Version: 1.7.27
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: vpc.bopingouin(a)gmail.com
Created attachment 49629
--> https://bugs.winehq.org/attachment.cgi?id=49629
Error log
Tomb Raider 2013 crashes quickly after launch (can't reach game menu), and
generates erros about OLE objects and LLVM librairies (cf. attachment).
In particular, some errors seem to be critical:
- '[0926/151316:ERROR:gpu_info_collector_win.cc(103)] Can't retrieve a valid
WinSAT assessment.'
- '[0926/151324:ERROR:renderer_main.cc(227)] Running without renderer sandbox'
- 'LLVM ERROR: ran out of registers during register allocation'
Additional information:
- Linux kernel 3.16.2
- mesa 10.3.0
- libLLVM 3.4.2
Hardware:
- AMD APU A8-7600 with Radeon R7 Graphics
- 8 GB of DDR3
Driver:
- Free radeon driver. A portion of the result of 'glxinfo' is as follows:
direct rendering: Yes
server glx vendor string: SGI
server glx version string: 1.4
OpenGL vendor string: X.Org
OpenGL renderer string: Gallium 0.4 on AMD KAVERI
OpenGL core profile version string: 3.3 (Core Profile) Mesa 10.3.0-rc1
OpenGL core profile shading language version string: 3.30
--
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=35119
Bug ID: 35119
Summary: 1.7.8: all games crash since yesterday
Product: Wine
Version: 1.7.8
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: blocker
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: dentaku(a)web.de
Classification: Unclassified
Just 3 days ago I upgraded to wine 1.7.8 to fix the steam startup crash. After
installing wine 1.7.8 steam worked again and the games also worked. Today, I
bootet my computer again and Ubuntu updates and steam updates went in. After
that no game works anymore!
There are lots of erros in the terminal - just a few when trying to start
several games (Tomb Raider, Zeno Clash 2, ..):
fixme:setupapi:extract_cabinet_file awful hack: extracting cabinet
"C:\\users\\martin\\Temp\\DX9055.tmp\\APR2007_xinput_x86.cab"
fixme:exec:SHELL_execute flags ignored: 0x00000100
Es konnte keine Anwendung gestartet werden, oder es ist keine Anwendung mit der
angegebenen Datei verknüpft.
ShellExecuteEx fehlgeschlagen: Ungültiger Parameter.
err:module:LdrInitializeThunk Main exe initialization for
L"Z:\\Steam_Wine\\SteamApps\\common\\Zeno Clash 2\\Binaries\\Win32\\ZC2.exe"
failed, status c0000135
err:setupapi:do_file_copyW Unsupported style(s) 0x144
fixme:exec:SHELL_execute flags ignored: 0x00000100
Es konnte keine Anwendung gestartet werden, oder es ist keine Anwendung mit der
angegebenen Datei verknüpft.
ShellExecuteEx fehlgeschlagen: Ungültiger Parameter.
fixme:storage:create_storagefile Storage share mode not implemented.
fixme:heap:HeapSetInformation 0x240000 0 0x23fce0 4
DIFxAPI Sampe Program
fixme:difxapi:DIFXAPISetLogCallbackA (0x401000, (nil)) stub
fixme:difxapi:DriverPackageInstallA ("C:\\Program Files (x86)\\AGEIA
Technologies\\driver\\x64\\1.1.1.15\\PhysX64.inf", 20, (nil), 0x23e8e0) stub
fixme:difxapi:DIFXAPISetLogCallbackA ((nil), (nil)) stub
Install script executed.fixme:advapi:EventRegister
{47a9201e-73b0-42ce-9821-7e134361bc6f}, 0x4285f80, 0x42d3c50, 0x42d3c48
--
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=34987
Bug #: 34987
Summary: Next Car Game tech demo graphics corruption
Product: Wine
Version: 1.7.7
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: directx-d3d
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: andrey.goosev(a)gmail.com
Classification: Unclassified
Created attachment 46623
--> http://bugs.winehq.org/attachment.cgi?id=46623
screenshot
It's how gameplay looks on GT 540M with driver 331.20
--
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=30086
Bug #: 30086
Summary: Heavy slow down X with Qt
Product: Wine
Version: 1.4-rc6
Platform: x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: alpha_one_x86(a)first-world.info
Classification: Unclassified
Hello, when I compil Qt or Qt program with wine, X use ~15% of my cpu, and have
like 1s with normal activie 1s where all freeze (mouse, X at 100%, ...)
No problem with other application like game, or 2D application.
To reproduct it:
Install the Qt SDK. Compil a big application (in my case
http://files.first-world.info/ultracopier/0.3.0.3/ultracopier-src-0.3.0.3.t…),
and see the cpu, move the mouse, ... it's easy to see, all freeze at fixed
interval.
I'm with the open source drivers for my ati radeon. 1 year ago I problem don't
exists.
--
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=33319
Bug #: 33319
Summary: Diabo 3 Freeze after 1-3 Minutes (Menu after login and
ingame)
Product: Wine
Version: 1.5.26
Platform: x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: bastik(a)gmx.de
Classification: Unclassified
Created attachment 44070
--> http://bugs.winehq.org/attachment.cgi?id=44070
Diablo console output with the given Diablo start command.
Diablo 3 Freeze within 1-3 minutes after successfull login.
Hardware:
Notebook running Ubuntu 12.10 with wine 1.5.26
Tested Catalyst versions 12.6 / 13.1 / 13.3 beta
All requirements and tips according to the Diablo 3 guide are done.
(http://appdb.winehq.org/objectManager.php?sClass=version&iId=25953)
CPU: Intel C2D T9300
Graphic: AMD HD4850
WINEDEBUG="-all,err+all,warn+all,fixme+all,+tid,+loaddll"
WINEPREFIX=~/.local/share/wineprefixes/Diablo3 force_s3tc_enable=true
WINEARCH=win32 setarch i386 -3 -L -B wine ~/Games/Diablo3/Diablo\ III.exe
-launch -opengl
(see attachement for output of this)
The error is locking the whole XServer (Unity3D and Unity2D tested) interface.
Keyboard is not responding, it is not possible to switch to another Terminal.
The mouse courser is movable but will not respond to clicks. In Diablo 3
windowed mode the courser does not change when moving from the game window to
the desktop. The game sound continous playing.
The only way to restore the Xserver session is to remotely kill the Diablo 3
process with an SSH tunnel.
I tried a lot of things to get it working, but without success.
- I disabled sound
- I worked around with wine registry keys (Direct3D settings) tried ervery
possibile setting.
Is there a possibilty to debug a running wine process after it is freezed? I
tested a bit with winedbg but without success.
Please advice me what to do, I don't have any ideas left, trying a few weeks to
get it running.
--
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=38863
Bug ID: 38863
Summary: Space Rangers 2 shows only black screen with nouveau
Product: Wine
Version: 1.7.46
Hardware: x86
URL: http://www.fileplanet.com/162972/160000/fileinfo/Space
-Rangers-2:-Rise-of-the-Dominators-Demo
OS: Linux
Status: NEW
Keywords: download
Severity: normal
Priority: P2
Component: directx-d3d
Assignee: wine-bugs(a)winehq.org
Reporter: gyebro69(a)gmail.com
Distribution: ---
Created attachment 51791
--> https://bugs.winehq.org/attachment.cgi?id=51791
terminal output
Upstream bug report:
https://bugs.freedesktop.org/show_bug.cgi?id=91171
Originally I reported the bug in Mesa bugtracker because the game runs properly
on my system with Nvidia binary drivers 340.76.
Discussing the issue with Ilia Mirkin on irc he expressed his doubts that the
problem might be in Wine as well.
Would any of the devs here mind taking a look at this bug and tell me where the
problem is?
Problem: the game shows only black screen after starting so that only audio can
be heard. If I set ddr=gdi then the game displays properly.
Trace file (uncompressed 335 MB):
https://drive.google.com/open?id=0B-tTbLKBl-tOX1c0T1VqRjR2MEU
Replaying the trace with nouveau the problem is reproducible.If I replay the
trace with the '--sb' (single-buffer) switch (glretrace --sb rangers2.trace)
then it renders correctly.
Our discussion on irc (relevant part from 10:29):
http://people.freedesktop.org/~cbrill/dri-log/?channel=nouveau&highlight_na…
wine-1.7.46-193-g8b566b1
Fedora 22 32-bit
VGA compatible controller: NVIDIA Corporation G92 [GeForce GTS 250] (rev a2)
Mesa from git
Xorg 1.17.2
--
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=33341
Bug #: 33341
Summary: Planetside 2 unplayable after April 3rd game update.
Product: Wine
Version: 1.5.27
Platform: x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: kisak42(a)gmail.com
Classification: Unclassified
Created attachment 44104
--> http://bugs.winehq.org/attachment.cgi?id=44104
backtrace of crash
The April 3rd, 2013 update of Planetside 2 has caused the game to crash for me.
I have a separate 32 bit wineprefix for Planetside 2 with a Windows XP
imm32.dll added to it. Before the update, the game was more or less playable,
besides the other documented issues of running this game on wine.
It now crashes just after selecting a character and clicking the play / log in
button.
I am running on Gentoo Linux 64 bit with an AMD Bulldozer and nVidia GTX 460
(nvidia-drivers 313.26). I am using Cinnamon 1.6.7 for my DE. Please feel free
to request any other relevant information.
Attached is a backtrace, which is consistent from one attempt to another. If I
am reading it right, the crash is occuring in apexframework_x86.
--
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=32576
Bug #: 32576
Summary: Skyrim runs but does not display game
Product: Wine
Version: 1.5.20
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: directx-d3d
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: alex_y_xu(a)yahoo.ca
Classification: Unclassified
Basically, Skyrim starts fine, and I can create a new game fine. Nothing
crashes, and the text ("Bethesda... presents... The Elder Scrolls V... SKYRIM")
displays fine, but the "background" i.e. game never displays.
I am using Wine 1.5.20, Mesa 9.0, xf86-video-ati 7.0.0 (Radeon HD 6850), and
linux 3.8.0-rc1+ (101e5c7470eb7f77ae87f966b9155f0dbb5b4698 with
4fc3f1d66b1ef0d7b8dc11f4ff1cc510f78b37d6,
5a505085f043e8380f83610f79642853c051e2f1 reverted).
--
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=37475
Bug ID: 37475
Summary: SimCity 2013 freezes on start in fullscreen (Failed to
open BO for returned DRI2 buffer (1600x900, dri2 back
buffer, named 11). This is likely a bug in the X
Server that will lead to a crash soon.)
Product: Wine
Version: 1.7.29
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: jre.winesim(a)gmail.com
Distribution: ---
Created attachment 49859
--> https://bugs.winehq.org/attachment.cgi?id=49859
Complete output (WINEDEBUG=fixme+all,err+all). The crash happens in line 3553.
Hi,
I installed SimCity 2013 in EA's Origin. When I start the game in fullscreen it
freezes during the intro. See the complete output (WINEDEBUG=fixme+all,err+all)
in the attachment. The crash happens in line 3553.
Starting and playing in an emulated virtual desktop works, but gives during the
intro more than 3.000.000 lines like this:
~~~~~
err:d3d_surface:surface_invalidate_location Surface 0x10ecfed0 does not have
any up to date location.
[...]
err:d3d_surface:surface_load_location Surface 0x10ed83e8 does not have any up
to date location.
~~~~~
I'm really not sure if this is wine's fault or as suggested by the error
message the X Server's. I got the same error message ("This is likely a bug in
the X Server that will lead to a crash soon.") when watching videos with mpv
when toggling fullscreen on and off. At the same time this works with other
video players, e.g. mplayer.
Hardware:
Samsung Serie 9 900X4C-A07 38,1cm (15 Zoll) Ultrabook
(Intel Core i7-3517U, 1,9 GHz, 8GB RAM, 256GB SSD, Intel HD 4000).
It happens regardless if I have an external monitor plugged in or not.
Software:
Debian Jessie (testing), 64-bit
Linux 3.16-3-amd64 #1 SMP Debian 3.16.5-1 (2014-10-10) x86_64 GNU/Linux
xserver-xorg 1:7.7+7
xserver-xorg-core 2:1.16.1-1
xserver-xorg-video-intel 2:2.21.15-2+b2
Origin 9.4.22.2815
See also my test report in the AppDB:
https://appdb.winehq.org/objectManager.php?sClass=version&iId=27821&iTestin…
I'd be happy to provide any further information.
Greets and thanks!
jre
--
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=14043
Summary: WEBPAGEMAKER 2.5 OLE error 80004001 when running
Product: Wine
Version: 1.0.0
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: blocker
Priority: P2
Component: msxml3
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: jabertolin914a(a)cv.gva.es
Hi
I tried to run Webpagemaker 2.5 (after a sucessful installation with Wine) and
I received the following messages:
OLE error 80004001
Access violation ... in module msxml3.dll
and I have to kill the process because it hangs.
Thanks
Juan
--
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=32506
Bug #: 32506
Summary: the godfather 2
Product: Wine
Version: unspecified
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: ray14125(a)gmail.com
Classification: Unclassified
Created attachment 42885
--> http://bugs.winehq.org/attachment.cgi?id=42885
bug the godfather 2
i have a bug when i start the godfather 2
--
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=38834
Bug ID: 38834
Summary: Dragon NaturallySpeaking 13.0 does not install with
Host_WindowLoadTimeout
Product: Wine
Version: 1.7.45
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: susancragin(a)gmail.com
Distribution: ---
This is either a regression or a mistake I have made.
I installed NatSpeak 13 a couple of weeks ago and was running it without a
problem.
BUT THEN
I re-installed my Debian Sid system last night, tried to re-install NatSpeak,
and now I get the error Host_WindowLoadTimeout a couple of seconds after I
start the install.
The log shows nothing.
NOTE:
A couple of days ago I started to get a lot of buffer under-runs and the
program ran slowly. This may be connected by probably is not because the buffer
under-runs seemed to involve the voice data.
--
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=16988
Summary: Guild Wars regression in 1.1.13
Product: Wine
Version: 1.1.13
Platform: PC-x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: minor
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: psycho_driver(a)yahoo.com
Guild Wars has been running consistantly well over the past couple dozen
releases but 1.1.13 has introduced a new bug. With UseGLSL = disabled and
winver = win2k on an amd64 gentoo 2008.0 desktop w/ a geforce 9800gt and binary
driver 180.22 a lot of graphics have become 'blocky', much of the text is now
unreadable, the compass texture is black, etc. etc.
Seems to work normally, but maybe slower than in the past, with UseGLSL =
enabled.
--
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=17275
Summary: Aquamark 3 crashes at end
Product: Wine
Version: unspecified
Platform: Other
URL: http://downloads.guru3d.com/download.php?det=673
OS/Version: other
Status: NEW
Keywords: download
Severity: enhancement
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: dank(a)kegel.com
On my system, with an nvidia GeForce 8500 GT, aquamark 3 runs
beautifully until the very end, where it crashes with
wine: Unhandled exception 0xc0000092 at address 0x7ead85d4 (thread 0009),
starting debugger...
The crash happens regardless of whether you choose demo or benchmark mode.
It happens right after the "massive overdraw" scene.
Supposedly this app worked before, so perhaps this is a regression.
--
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=36747
Bug ID: 36747
Summary: When SIV calls SLGetWindowsInformation() it crashes as
RaiseException() get's called
Product: Wine
Version: unspecified
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: ray(a)rh-software.com
When I try and run SIV 4.46 Beta-15 on Wine it crashes when it calls
SLGetWindowsInformation() as RaiseException() get's called rather than an error
being returned. I also noted the function does not get reported correctly in
the attached trace.
__wine_spec_unimplemented_stub+0x37(module="slc.dll", function="ÿ Ó“")
It's simple enough for me to stop SIV calling SLGetWindowsInformation() when
it's running on Wine, but I feel I should not need to do this. Then again it's
far easier than getting Wine fixed!
--
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=19061
Summary: Few italian translations in wine
Product: Wine
Version: unspecified
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: enhancement
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: erpizzo(a)alice.it
In wine configuration most of the text is still in english and not in italian.
is it possible to have these things translated? i offer my help for the
translation
--
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=34362
Bug #: 34362
Summary: Bioshock takes way way way too long to load
Product: Wine
Version: 1.7.0
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: felipe.contreras(a)gmail.com
Classification: Unclassified
Created attachment 45743
--> http://bugs.winehq.org/attachment.cgi?id=45743
Console output
Each time the tries to load, it takes several minutes (around five) before it
finishes, which is way way more than it does in Windows.
--
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=36035
Bug ID: 36035
Summary: not every joystick button is recognized, mapped
correctly
Product: Wine
Version: 1.7.17
Hardware: x86-64
OS: Mac OS X
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: directx-dinput
Assignee: wine-bugs(a)winehq.org
Reporter: f.platte(a)platte-web.de
Wine 1.7.17 solved some joystick related crashes for me (refer to bug 33958
[http://bugs.winehq.org/show_bug.cgi?id=33958]).
Anyway some work still needs to be done, as not every button is recognized
(missing: A, B, X, Y, black, white - XBOX [original] Controller, while
Start/Back are working and being assigned as the default go forward/backward
buttons).
The D-Pad works, too, but it cannot be used for navigation (or similar), as
it's only recognized as being 4 independent buttons.
Furthermore Wine does not handle the Z/RZ axis properly (others work). They are
treated as independent axis while actually both represent half an axis.***
- This makes acceleration (racing game) to be active while not being actually
pressed and braking being activated upon hitting "acceleration" (Z-axis). The
RZ axis is being ignored completely although it's assigned to breaking in the
games settings. This is not an issue with the game (Colin McRea Rally 2005) as
it occurs within other games, too.
I'm using my XBOX one controller with a special OS X driver
(http://xhd.sourceforge.net) in version 2.0.0
(http://xhd.cvs.sourceforge.net/viewvc/xhd/xhd/Release/) with 64bit support,
which is required by OS X Mountain Lion and greater. (I'm on 10.8.5.)
- The driver itself does work (tested with OS X native/cider games and
confirmed with the drivers panel graphical feedback.)
*** I do not now how it's actually supposed to behave/work, but this seems lil
the best explanation concerning functionality.
--
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=25755
Summary: unimplemented action MigrateFeatureStates
Product: Wine
Version: unspecified
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: msi
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: nicholag(a)andrews.edu
Created an attachment (id=32823)
--> (http://bugs.winehq.org/attachment.cgi?id=32823)
messages from the installation and upgrade attempt for hrblock tax software
Trying to install tax software from H&R Block for 2010. The installer shows an
error, but the application seems to install. Updates to the application get
downloaded, but the error message prevents the update from installing.
--
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=17643
Summary: Installation of Sql express
Product: Wine
Version: 0.9.1.
Platform: Other
OS/Version: other
Status: UNCONFIRMED
Severity: enhancement
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: kumar3010(a)gmail.com
i am using ubuntu os and i am trying to install sqlexpress
but it wasnt installing it says unable to extract the files.
can u please tell the procedure how to install sqlexpress.msi
using wine in ubuntu os.
--
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=23686
Summary: Star Sonata: Crash when trying to use it in virtual
desktop
Product: Wine
Version: 1.2-rc5
Platform: x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: minor
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: b747xx(a)gmail.com
Created an attachment (id=29661)
--> (http://bugs.winehq.org/attachment.cgi?id=29661)
Backtrace
Game crash when trying to use Wine in virtual desktop mode.
How to reproduce it :
wine explorer /desktop=1,1680x1050 "C:\Program Files\StarSonata\Star
Sonata.exe"
Crash each time at the login section of the game, background don't display.
Star Sonata work correctly without virtual desktop.
You can download Star Sonata and play it for free here :
http://www.starsonata.com/download.html
--
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=27890
Summary: Wine Internet Explorer doesn't process combobox
correctly
Product: Wine
Version: 1.3.25
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: fiveframe(a)lavabit.com
1. Run Wine Internet Explorer.
2. Go to http://www.adobe.com/go/getflashplayer.
3. Click the combobox.
4. Combobox doesn't show list of available operating systems or versions.
--
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=19347
Summary: winefile: inconsistent "Wine" menu
Product: Wine
Version: 1.1.25
Platform: All
URL: http://winehq.org
OS/Version: All
Status: UNCONFIRMED
Severity: enhancement
Priority: P2
Component: programs
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: adys.wh(a)gmail.com
Left of the "File" menu in winefile, is a wine bottle which acts as a window
menu. This is inconsistent with other programs; and unnecessary as the window
menu is located just above it.
--
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=31493
Bug #: 31493
Summary: Dota 2: hero tooltip text is not rendered
apprropriately
Product: Wine
Version: 1.5.11
Platform: x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: minor
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: phoenix(a)mail.ru
Classification: Unclassified
Created attachment 41401
--> http://bugs.winehq.org/attachment.cgi?id=41401
Corrupted tooltip above Mirana
Repro:
1. Start/watch dota 2 game
2. Hover cursor over hero
3. Observe tooltip which appears above it
Result:
Tooltip text is not shown, see screenshot. As you play game, some letters may
randomly appear there (correct letters in correct positions, but they don't
appear one-by-one from left to right or all together).
Expected:
Tooltip should show hero class and hero level.
--
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=24518
Summary: Civilization V start menu has style issues
Product: Wine
Version: 1.3.3
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: adys.wh(a)gmail.com
Created an attachment (id=30950)
--> (http://bugs.winehq.org/attachment.cgi?id=30950)
Wine screenshot
See attached screenshots.
--
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=30064
Bug #: 30064
Summary: readbook.exe crash on exit
Product: Wine
Version: 1.4-rc6
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: fracting(a)gmail.com
Classification: Unclassified
1. Download readbook
http://dl-sh-ocn-1.pchome.net/03/um/RB_Setup_Plus1.51.zip
2. unzip and install
$ wine RB_Setup_Plus1.51.exe
always select "next"/"下一步"
3. Start readbook
$ cd .wine/drive_c/ReadBOOK
$ wine ReadBook.exe
A configure wizard dialog will popup in the first time starting readbook.exe
click "Cancel"/"取消" to workaroudn Bug 30063
4. click "知道了"/"I know"
5. click file -> exit
Readbook.exe crash on exit.
However, I'm not sure if this is really a wine bug.
On my winxp box, it crash on exit as well. Maybe it doesn't crash on some
version of Windows? It will be great if somebody double checks.
Thanks.
--
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=38179
Bug ID: 38179
Summary: directdraw game can be lanched, but hangs after click
"new game" button from main menu
Product: Wine
Version: 1.7.37
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: gamiljydcome(a)gmail.com
Distribution: ---
directdraw game can be lanched, but hangs after click "new game" button from
main menu
i try to play a old arpg game 三国赵云传 in virtual desktop. after i click "new
game" button from main menu, the game show some intro messages, then, long
waiting, it hangs. i have to terminate it by alt-f4.
it is not complete hangs, i can still hear music, but keybord/mouse gone.
i can confirm this app stopped peek keybord message, until game show intro
messages over. this is wrong, it should be interruped by enter ESC key, then
show next scene. but, hangs.
i think this game use some old ddraw way to render, but go into some kind of
infinite loop or something, cause keybord/mosue gone, noting render to screen.
i have tested this game with wine version 1.6~1.7.37, the issue is same. maybe
it is a wine 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.
http://bugs.winehq.org/show_bug.cgi?id=16265
Summary: ActiveX Control Pad installer hangs sometimes on exit;
deadlock between LdrShutdownThread and TASK_ExitTask?
Product: Wine
Version: 1.1.9
Platform: Other
URL: http://msdn.microsoft.com/en-us/library/ms968493.aspx
OS/Version: other
Status: NEW
Keywords: download, Installer
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: dank(a)kegel.com
A user said that ConvWPT ran in Wine, but gave a very complicated recipe,
so I tried simplifying it. Along the way, I noticed that Microsoft's
ActiveX Control Pad installer hangs sometimes on exit. Here's how to
reproduce:
1) Do "winetricks wsh56", else "winetricks fm20" will fail with dialog
"Setup has determined that Microsoft Internet Explorer 3.0 was not detected."
2) Do "winetricks fm20". This will complain "Setup was unable to start DDE
communication with the desktop". Click Ignore.
(This is probably bug 9159.)
When the installer is done, it sometimes hangs with
err:ntdll:RtlpWaitForCriticalSection section 0x7ef2b3c0 "syslevel.c:
Win16Mutex" wait timed out in thread 002f, blocked by 002e, retrying (60 sec)
err:ntdll:RtlpWaitForCriticalSection section 0x7efec5e4 "loader.c:
loader_section" wait timed out in thread 002e, blocked by 002f, retrying (60
sec)
Using winedbg, I was able to get a backtrace of those threads by pressing ^C
and then using the bt command:
Wine-dbg>bt 0x2e
Backtrace:
=>1 RtlpWaitForCriticalSection+0x2fd(crit=0x7efec5e4)
[dlls/ntdll/critsection.c:64] in ntdll
2 RtlEnterCriticalSection+0x4a(crit=<?>) [dlls/ntdll/critsection.c:553] in
ntdll
3 LdrShutdownThread+0x49() [dlls/ntdll/loader.c:2160] in ntdll
4 RtlExitUserThread+0x67(status=<?>) [dlls/ntdll/thread.c:628] in ntdll
5 in kernel32 (+0x74ca6)
6 DOSVM_Int21Handler+0x9a17(context=0x7e56638c) [dlls/winedos/int21.c:3192]
in winedos
7 DOSVM_CallBuiltinHandler+0x17(context=0x7e56638c, intnum=<?>)
[dlls/winedos/interrupts.c:712] in winedos
8 INSTR_CallBuiltinHandler+0x3c(context=0x7e56638c, intnum=<?>)
[dlls/kernel32/instr.c:901] in kernel32
9 DOS3Call+0x25(context=0x7e56638c) [dlls/kernel32/instr.c:911] in kernel32
...
Wine-dbg>bt 0x2f
Backtrace:
=>1 RtlpWaitForCriticalSection+0x2fd(crit=0x7ef2b3c0)
[dlls/ntdll/critsection.c:64] in ntdll
2 RtlEnterCriticalSection+0x4a(crit=<?>) [dlls/ntdll/critsection.c:553] in
ntdll
3 _EnterSysLevel+0x7b(lock=0x7ef2b3c0) [dlls/kernel32/syslevel.c:106] in
kernel32
4 _EnterWin16Lock+0x20() [dlls/kernel32/syslevel.c:187] in kernel32
5 TASK_ExitTask+0x19() [dlls/kernel32/task.c:564] in kernel32
6 DllMain+0x75(hinst=0x7ee10000, reason=3, reserved=(nil))
[dlls/kernel32/kernel_main.c:212] in kernel32
7 __wine_spec_dll_entry+0x3e(inst=0x7ee10000, reason=<?>, reserved=<?>)
[dlls/winecrt0/dll_entry.c:40] in kernel32
8 call_dll_entry_point+0x15() in ntdll
9 MODULE_InitDLL+0xe3(wm=<?>, reason=3, lpReserved=(nil))
[dlls/ntdll/loader.c:912] in ntdll
10 LdrShutdownThread+0x96() [dlls/ntdll/loader.c:2163] in ntdll
11 RtlExitUserThread+0x67(status=<?>) [dlls/ntdll/thread.c:628] in ntdll
12 in kernel32 (+0x74ca6)
13 WINOLDAP_EntryPoint+0x1a2(context=0x7d7b138c)
[dlls/kernel32/kernel16.c:207] in kernel32
...
--
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=39249
Bug ID: 39249
Summary: AMD and Intel problem O2Jam Black Screen problem
Product: Wine
Version: 1.7.51
Hardware: x86-64
OS: Windows
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: directx-d3d
Assignee: wine-bugs(a)winehq.org
Reporter: onte_jc(a)yahoo.com
AMD and Intel problem O2Jam Black Screen problem
http://o2jam.intgamerz.net
Running O2Jam in AMD or Intel Graphics will stuck the game, black screen, not
runnable anymore
Nvidia is working fine w/o any problems at all
--
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=12370
Summary: AGEod's American Civil War cannot run.
Product: Wine
Version: 0.9.58.
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: blocker
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: fernando.lagrange(a)club-internet.fr
Created an attachment (id=11865)
--> (http://bugs.winehq.org/attachment.cgi?id=11865)
Error with following command: "nohup wine AACW.exe > wine.txt &"
When the game starts, there is an exception in ntdll that prevents it from
running.
wine was launched with and without "WINDEBUG=relay" (see attached files).
Game developers states that this seems to be linked to DirectX.
This game is based on same engine than Napoleon's Campaigns:
http://appdb.winehq.org/objectManager.php?sClass=application&iId=6294
Same behaviour has been seen with wine-0.9.56.
--
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=34384
Bug #: 34384
Summary: Media Browser 3 Installer doesn't see .Net 4.5 as
installed (wine-mono)
Product: Wine
Version: 1.7.0
Platform: x86
OS/Version: Linux
Status: NEW
Keywords: download, Installer
Severity: normal
Priority: P2
Component: mscoree
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: austinenglish(a)gmail.com
CC: madewokherd(a)gmail.com
Classification: Unclassified
Followup to bug 34309 (dupe of bug 31487).
Prerequisite check for system component Microsoft .NET Framework 4.5 (x86 and
x64) failed with the following error message:
"Installation of the Microsoft .NET Framework 4.5 is not supported on this
operating system. Contact your application vendor."
See the setup log file located at
'C:\users\austin\Temp\VSDa1f3.tmp\install.log' for more information.
Looking at its log, it's missing registry keys:
austin@aw25 ~/.wine/drive_c/users/austin/Temp/VSDa1f3.tmp $ cat install.log
The following properties have been set:
Property: [AdminUser] = true {boolean}
Property: [InstallMode] = HomeSite {string}
Property: [NTProductType] = 0 {int}
Property: [ProcessorArchitecture] = Intel {string}
Property: [VersionNT] = 5.1.3 {version}
Running checks for package 'Microsoft .NET Framework 4.5 (x86 and x64)', phase
BuildList
Reading value 'Version' of registry key 'HKLM\Software\Microsoft\NET Framework
Setup\NDP\v4\Full'
Unable to read registry value
Not setting value for property 'DotNet45Full_TargetVersion'
The following properties have been set for package 'Microsoft .NET Framework
4.5 (x86 and x64)':
Running checks for command 'DotNetFX45\dotNetFx45_Full_x86_x64.exe'
Result of running operator 'ValueEqualTo' on property 'InstallMode' and value
'HomeSite': true
Result of checks for command 'DotNetFX45\dotNetFx45_Full_x86_x64.exe' is
'Bypass'
Running checks for command 'DotNetFX45\dotNetFx45_Full_setup.exe'
Result of running operator 'ValueNotEqualTo' on property 'InstallMode' and
value 'HomeSite': false
Skipping ByPassIf because Property 'DotNet45Full_TargetVersion' was not defined
Result of running operator 'ValueEqualTo' on property 'AdminUser' and value
'false': false
Result of running operator 'VersionLessThan' on property 'VersionNT' and value
'6.0.0': true
Result of checks for command 'DotNetFX45\dotNetFx45_Full_setup.exe' is 'Fail'
'Microsoft .NET Framework 4.5 (x86 and x64)' RunCheck result: Fail
A prerequisite failed for Package "Microsoft .NET Framework 4.5 (x86 and x64)"
Package failed with message "Installation of the Microsoft .NET Framework 4.5
is not supported on this operating system. Contact your application vendor."
--
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=23235
Summary: If Xserver does not suppoer MIT-SHM, log get spammed
Product: Wine
Version: unspecified
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: winex11.drv
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: atari(a)gabo.pl
If Xserver does not support MIT-SHM extension, log is spammed with a lot of
Xlib: extension "MIT-SHM" missing on display "localhost:11.0".
messages.
It would be better if such message would appear only once.
--
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=17660
Summary: Starcraft slow down when select any building or units
Product: Wine
Version: 1.1.16
Platform: PC
OS/Version: All
Status: UNCONFIRMED
Severity: enhancement
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: nathnett(a)gmail.com
Starcraft slow down when select any building or unit/s.
--
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=35324
Bug ID: 35324
Summary: Arkhimedes: Crash on start-up
Product: Wine
Version: unspecified
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: blocker
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: hpaara(a)gmail.com
Classification: Unclassified
Program error - won't launch the program.
--
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=39537
Bug ID: 39537
Summary: Mouse grabbing doesn't work under Wayland
Product: Wine
Version: 1.7.52
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: samuel.rakitnican(a)gmail.com
Distribution: ---
Created attachment 52687
--> https://bugs.winehq.org/attachment.cgi?id=52687
Crtl+C locks mouse to window under LFS.exe
Under X.Org when Ctrl+C is pressed LFS.exe toggle lock mouse pointer to window
and vice versa. Tested recently under Fedora 23 Wayland, that is not the case.
How to replicate
1. Run Live for Speed
2. Press Ctrl + C until "CTRL + C - mouse clipped to window" message appears
3. Try mooving mouse pointer outside window
--
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=30402
Bug #: 30402
Summary: Stalker (SoC and CoP) freezes on splash screen
Product: Wine
Version: 1.5.1
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: otaku(a)rambler.ru
Classification: Unclassified
Created attachment 39742
--> http://bugs.winehq.org/attachment.cgi?id=39742
terminal output with clean wineprefix
Sometimes (every 5th time approximately) the game runs perfectly.
--
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=35201
Bug ID: 35201
Summary: GTA SA does not start; i dont know the reason
Product: Wine
Version: 1.7.8
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: major
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: jfarroyo82(a)hotmail.com
Classification: Unclassified
Created attachment 46953
--> http://bugs.winehq.org/attachment.cgi?id=46953
Log automatically generated from Wine when starting GTA SA
Im using Ubuntu 14.04 (not yet released), with Unity. Gnome flashback version
without unity worked few days ago. GTA San Andreas has refused to start twice.
Log attached.
--
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=33129
Bug #: 33129
Summary: Resident Evil 4: GLSL completely freeze computer
Product: Wine
Version: unspecified
Platform: x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: opengl
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: aurelio(a)archlinux.info
Classification: Unclassified
with GLSL enabled if run RE4, game and computer (completely, i cannot kill
game, X, and etc, i need reboot computer) freeze
This freeze occur when approach of first home of game(+/- 1 sec after movie
played)
System: ArchLinux (Up-to-date)
Wine: wine-1.5.25
Graphic card: Radeon 9600 (radeon OSS driver)
Attached wine output
I cannot attach output(because it's obvious, computer is freezed)
--
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=31921
Bug #: 31921
Summary: WARNING: gnome-keyring:: couldn't connect to:
/tmp/keyring-G1GL0q/pkcs11: No such file or directory
Product: Wine
Version: 1.5.14
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: major
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: kingpin4000(a)shaw.ca
Classification: Unclassified
Since the last update of wine I have been getting this error which is causing a
ton of programs to not work anymore.
WARNING: gnome-keyring:: couldn't connect to: /tmp/keyring-G1GL0q/pkcs11: No
such file or directory
I have tryed different distros to rule them out.. All of them get this error on
this version of wine??
After restart the folder in the temp folder is renamed if that matters.. So for
example its right now looking in folder keyring-G1GL0Q but on next reboot it
will be different.
Even typing in winecfg in the terminal gives that error so I know its a problem
with wine not the distro.
--
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=30331
Bug #: 30331
Summary: World of Warcraft Mists of Pandaria Beta Unhandled
Exception shortly after entering world
Product: Wine
Version: 1.5.0
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: noah.mccalment(a)gmail.com
Classification: Unclassified
Created attachment 39639
--> http://bugs.winehq.org/attachment.cgi?id=39639
Console output of wine
After loading the World of Warcraft Mists of Pandaria beta client and selecting
a premade character, the game world loads just fine. However, shortly
afterward, an unhandled exception occurs that crashes the game client. I've
attached the straight output below.
--
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=22354
Summary: Xfire crash after upgrade to Ubuntu 10.04
Product: Wine
Version: 1.1.34
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: redplug(a)web.de
Created an attachment (id=27353)
--> (http://bugs.winehq.org/attachment.cgi?id=27353)
Wine Output with WINEDEBUG=+all
after upgrade to Ubuntu 10.04 Xfire dont start anymore.
It crash with the this bugreport:
<?xml version="1.0" encoding="utf-8" ?>
<ExceptionReport Version="4">
<Application Build="42127" Command="C:\Programme\Xfire\Xfire.exe"/>
<OperatingSystem Type="2"><Version Major="5" Minor="1"
Build="2600"/></OperatingSystem>
<Exception Code="C0000005" Address="7A6AB486"></Exception>
<Registers EAX="00000001" EBX="00000000" ECX="00000000" EDX="00000000"
ESI="00000009" EDI="793233C8" CS="0023" EIP="7A6AB486" SS="002B" ESP="0032F1E4"
EBP="00000000" DS="002B" ES="002B" FS="0063" GS="006B" Flags="00010246"/>
<BackTrace>
</BackTrace>
</ExceptionReport>
--
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=33825
Bug #: 33825
Summary: Splinter Cell: Conviction - glsl shaders error
Product: Wine
Version: 1.6-rc2
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: directx-d3d
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: andrey.goosev(a)gmail.com
CC: andrey.goosev(a)gmail.com
Classification: Unclassified
Playing version 1.04
Strings after several minutes, but rendering without issues.
Workaround is to set 'glsl=disabled'.
err:d3d_shader:shader_glsl_select >>>>>>>>>>>>>>>>> GL_INVALID_OPERATION
(0x502) from glUseProgramObjectARB @ glsl_shader.c / 6172
err:d3d_shader:shader_glsl_load_constantsB >>>>>>>>>>>>>>>>>
GL_INVALID_OPERATION (0x502) from shader_glsl_load_constantsB() @ glsl_shader.c
/ 746
--
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=35887
Bug ID: 35887
Summary: YNAB 4 carashes on launch
Product: Wine
Version: 1.7.15
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: turley714(a)gmail.com
Created attachment 47922
--> http://bugs.winehq.org/attachment.cgi?id=47922
backtrace
I've just installed YNAB 4 on Mint 16 using Wine 1.7.15.
Lanuching the application causes an error. (Backtrace attached)
The application can be downloaded here:
https://www.youneedabudget.com/download
--
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=34740
Bug #: 34740
Summary: Command 'build-dep wine ' in Saucy use old library and
blocks building from source code.
Product: Wine
Version: unspecified
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: blocker
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: sov.info(a)mail.ru
Classification: Unclassified
Created attachment 46318
--> http://bugs.winehq.org/attachment.cgi?id=46318
log
Solvation of this problem, may be, very simple.
Library libgphoto2-2-dev was upgraded to libgphoto2-6-dev, but Wine don't see
that.
Maybe there are dependency wine1.6=libgphoto2-2-dev or something, should be
wine => libgphoto2-2-dev.
--
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=34130
Bug #: 34130
Summary: Copy-pasting from chromium browser (linux native) to
wine breaks non-latin text.
Product: Wine
Version: 1.6
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: unxed(a)mail.ru
Classification: Unclassified
Example: Far manager 3.0 (running under wine).
I copy the word "проверка" (cyrillic) from chromium (linux native) and paste it
to Far manager. It is pasted as "пÑовеÑка".
Same thing with wine cmd.exe, wine settings app and other applications running
under wine.
May be it is chromium bug, I am not sure. Not reproduced with other browsers.
--
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=31373
Bug #: 31373
Summary: Bioshock cause Radeon to freeze (GPU lockup)
Product: Wine
Version: 1.5.9
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: michael(a)araneidae.co.uk
Classification: Unclassified
Playing Bioshock (1.0, Steam version) causes graphical lockup after a few
minutes of play. My graphics stack is [lib32-]ati-dri (etc) 8.0.4-1 or -2 on
Arch with a HD 6950 graphics card.
In dmesg I see:
radeon 0000:01:00.0: GPU lockup CP stall for more than 10000msec
followed by a detailed status dump.
In output from startx I see numerous backtraces (I'll have to make a separate
message for these, at it seems I can only make one attachment at a time) in X.
I'm afraid I've got nothing to report from wine itself as any messages there
might have been are drowned in a flood of
fixme:d3d:resource_check_usage Unhandled usage flags 0x8.
messages!
--
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=38885
Bug ID: 38885
Summary: Wine will not install (Virtual package)
Product: Wine
Version: unspecified
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: blocker
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: theorangeone(a)theorangeone.net
Distribution: ---
Created attachment 51819
--> https://bugs.winehq.org/attachment.cgi?id=51819
Error message from software center
I cannot seem to install wine, I have tried through the command line, I have
tried through the software center, both versions! I have added the i386 arch to
dpkg as the internet says. But I still can't work it out.
Any help would be great, need this to be sorted asap.
Information:
Ubuntu Gnome 15.04 (fully up to date)
Macbook air 13 (yes I know, but it works!)
Thanks in advanced!
--
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=32947
Bug #: 32947
Summary: Broken font rendering with many fonts (including
Microsoft core fonts) in wine 1.5
Product: Wine
Version: 1.5.22
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: gdi32
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: constantine.gavrilov(a)gmail.com
Classification: Unclassified
This is a long standing issue with 1.5 versions. Several bugs have been opened
and closed but they usually do not get to the core issue.
One of the issues (that is listed as closed) is 29250.
Here is the beef of the matter.
Many true type fonts including core Microsoft fonts (Arial, Times New Roman,
Courier New, Tahoma, Verdana) and all built-in true type fonts shipped with
Wine (Tahoma, ms-sans-serif, etc.) will use subpixel rendering only at
unrealistically big sizes (>= 16), and event then the quality is awful.
Other fonts (typically from Dejavu or Vera families) will render just fine and
will use subpixel rendering at default sizes.
Asking wine to log font decisions shows that wine has decided to disable
antialiasing for "problematic" fonts because of the info it got from GASP
table.
I would like to stress that this is not a problem of fontconfig settings or
fontconfig or wine font substitutions. Nor it is a problem of wrong DPI.
Native linux applications display just fine, and wine will display similar to
Linux if Dejavu or Vera fonts are forced.
Additionally, ClientSideGraphics=N (or =Y) has nothing to do with this problem
either. Under both settings, the fonts look similar and the decisions based on
the GASP table are the same. This setting does not affect the decision to
antialias or not, it affects the quality with ClientSideGraphics=N giving
better results that are also consistent with the Linux desktop.
This feature (using the GASP tables the way they are used) is actually a
misfeature because:
* shipped wine fonts are not usable for dialogs and menus
* native Windows fonts cannot be used because they will not use subpixel
rendering but they are still recommended in documentation.
I understand that someone desired to get a closer picture to Windows, but what
we have is unusable now. As far as I can see, Windows will antialias these
fonts just fine (at least starting from size 12), and even when ClearType is
not used for size 10, the font is still very crisp and readable.
Bottom line, when wine decides to skip antialias for most fonts, the result is
very very ugly. I would even say it is not possible to use.
I also would like to claim that fontconfig uses subpixel rendering for these
fonts just fine (native Linux applications look great) and I would say the
results are better (at least definitely not worse) compared to Windows
rendering for cases when it decides to skip antialiasing because the size is
small.
Can we have a configuration setting to opt out of GASP table decisions?
--
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=31914
Bug #: 31914
Summary: Recorded frames are in reversed order
Product: Wine
Version: 1.5.10
Platform: x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: thedesti(a)yahoo.com
Classification: Unclassified
I'm using glc-capture to record apllications and games.
https://github.com/nullkey/glc/wiki
Up to WINE-1.5.9 it was working OK, making a picture like this:
http://www.twitch.tv/nuclear_power_plant/b/334759327
Sine the update to WINE-1.5.10, the recorded frames are in reversed order,
making the first pixel to the last pixel.
It's now looking like this:
http://www.twitch.tv/nuclear_power_plant/b/334768276
Also when starting recording the console got flooded with this error:
err:d3d:context_bind_fbo >>>>>>>>>>>>>>>>> GL_INVALID_ENUM (0x500) from
glBindFramebuffer() @
/var/tmp/portage/app-emulation/wine-1.5.10/work/wine-1.5.14/dlls/wined3d/context.c
/ 84
It's reproduce able with WINE-1.5.10 to 1.5.14.
--
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=34369
Bug #: 34369
Summary: Civ IV crashes repeatedly after linux upgrade
Product: Wine
Version: 1.4
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: blocker
Priority: P2
Component: kernel32
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: pepebuho(a)hotmail.com
Classification: Unclassified
I had CivIV working somewhat fine under Ubuntu 12.04 LTS.
After upgrading to kernel 3.2.0-52-generic-pae #78-Ubuntu SMP, Civ IV is
crashing constantly always with the same error.
I see some libasound and lib pulse references, therefore I muted all sounds,
nevertheless I still keep getting the same problem.
Simply, after a short time playing, Civ IV crashes.
--
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=35032
Bug #: 35032
Summary: starcraft unbearably slow in fullscreen mode
Product: Wine
Version: unspecified
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: j.schauer(a)email.de
Classification: Unclassified
Regression SHA1: 94ae743ea668e49d40ae4e2dc5fe1f5d9be018cb
Created attachment 46698
--> http://bugs.winehq.org/attachment.cgi?id=46698
glxinfo
Hi,
while Starcraft (specifically Broodwar) worked perfectly before, I now observed
that whenever I would let it run in fullscreen mode, it would be horribly slow
(about 2-3 fps) so that even moving the mouse cursor would become a frustrating
task. This issue does not show when starcraft is not drawing fullscreen, for
example when it is in a virtual desktop or when my window manager (awesome)
constricts it to a window.
This might be a problem with my graphics card/driver but since it worked fine
in wine a few years ago, I ran a regression test and found out that the problem
was introduced with commit 94ae743 which changed the DefaultSurfaceType to
opengl.
On my host I'm running Debian jessie (testing) amd64 with mesa 9.1 and intel
2.19 drivers. I did all the regression testing in a chroot environment with
Debian squeeze i386 because the specific wine versions around commit 94ae743
would not compile when libxml2 was too new.
I only have access to Intel graphics hardware, so I can't test on a machine
with a different graphics card. The laptop I was testing on was a Dell E6510
with Ironlake graphics as you can see in the attached glxinfo output.
I was told in IRC that this problem is likely a driver issue but nevertheless I
would like to know whether there is a patch that I can apply to my specific
wine version to restore the functionality I had before commit 94ae743 was
applied?
--
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=31142
Bug #: 31142
Summary: Compiling on 64-bit fails with wine1.4 and above
Product: Wine
Version: unspecified
Platform: x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: major
Priority: P2
Component: wldap32
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: thejollybard(a)gmail.com
Classification: Unclassified
Compiling various applications which require wine libraries fail in 64-bit.
On Ubuntu 12.04
Since the upgrade to wine1.4, I think, dssi-vst stopped working. I tried
reinstalling it only to realise that there was only dssi-vst:i386 in the ubuntu
repos. I can't use it because it needs liblo7:i386, while most DAWs need the
amd64 version.
I tried compiling dssi-vst manually, but this happens:
/usr/bin/ld: Relocatable linking with relocations from format elf64-x86-64
(/usr/lib/x86_64-linux-gnu/wine/libwinecrt0.a(exe_entry.o)) to format
elf32-i386 (dssi-vst-server.04FZay.o) is not supported
Same thing happens with fst.
--
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=32560
Bug #: 32560
Summary: H&R Block At Home 2012 fails to install
Product: Wine
Version: unspecified
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: cuny.cs(a)gmail.com
Classification: Unclassified
Created attachment 42966
--> http://bugs.winehq.org/attachment.cgi?id=42966
backtrace
Before attempting to install the tax program I followed the following steps
found in the App DB for H&R Block TaxCut 2011:
1.) winetricks ie8
2.) winetricks vcrun6
3.) winetricks vcrun2005
4.) winetricks mspatcha
winetricks vcrun6 failed with this error:
HTTP request sent, awaiting response... 404 Not Found
2012-12-27 02:10:23 ERROR 404: Not Found.
The others were successfully installed.
When I attempted to install HRBlock from a downloaded installation file
(HRBlock_Deluxe+Efile+State.exe) result was just "Error reading setup
initialization file". No further information was given.
When I attempted to install from a CD, running the file tcauto.exe crashed &
produced the attached backtrace.
When I attempted to install from the CD, running the file
installers/HRBlock_Deluxe+Efile+State_2012_CD.exe, it started extracting files
but then stopped & said "Please use TCAuto.exe to install H&R Block tax"
--
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=23649
Summary: [TMG 7.04] Certain fonts are not drawn correctly
Product: Wine
Version: 1.2-rc7
Platform: x86
URL: http://www.whollygenes.com/files/tmg7setup.exe
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: saturn_systems(a)yahoo.com
Created an attachment (id=29593)
--> (http://bugs.winehq.org/attachment.cgi?id=29593)
foxfont corruption tag entry screen
The following fonts look corrupted if used and tmg will not display until tmg
is restarted
(1)"A Line TMG"
(2)"Foxfont"
(3)"Foxpro window font"
(4)"System font"
See screen captures.
To change the fonts to see the issue you need to visit the preferences menu
"file>preferences>Program Options>List"
and select one the fonts listed above.
--
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=34166
Bug #: 34166
Summary: Fullscreen flickering on Mac
Product: Wine
Version: 1.6-rc5
Platform: x86-64
OS/Version: Mac OS X
Status: UNCONFIRMED
Severity: minor
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: M8R-45axwd(a)mailinator.com
Classification: Unclassified
The fullscreen flickering bug-- http://bugs.winehq.org/show_bug.cgi?id=29261
--was fixed by the introduction of the mac driver, and in Wine 1.6 RC4
everything works fine. However, the flickering is back in 1.6 RC5 even
WITH the mac driver. The problem is still present in stable Wine 1.6.
I'll try to do a regression test for this bug, but it seems like a hard thing
to do. Maybe somebody will be able to identify the cause quicker than me.
OS X 10.7.5, ATI Radeon HD 2600 Pro 256 MB
--
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=29227
Bug #: 29227
Summary: Everything using acceleration crashes after a while on
radeon
Product: Wine
Version: unspecified
Platform: x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: critical
Priority: P2
Component: directx-d3d
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: 2012atondwal(a)tjhsst.edu
Classification: Unclassified
Anything that tries to use graphics acceleration (e.g. steam client, not even
the games...) crashes. I think it's the graphics acceleration because quicktime
crashes immediately and the steam client only crashed after it auths.
Bug disappears with +relay, but ofc, everything is uselessly slow with +relay.
Under catalyst it works. Here's the log:
http://pastebin.com/1Xvu5f0b
radeon:
http://pastebin.com/7PCGgKYK
I thought the problem was
fixme:d3d_caps:wined3d_guess_card No card selector available for GL vendor 4
and card vendor 0000.
so in accordance with
http://bugs.winehq.org/show_bug.cgi?id=24051
I made wine recognize my card. (added a catchall strstr(gl_vendor_string,
"Gallium")) in wined3d_guess_card_vendor under vendor "ATI" in
dlls/wined3d/directx.c )
Same thing happens. This is the log without +relay:
http://pastebin.com/nqkeSgv4
The log with +relay is attached.
My graphics card is a radeon 6850HD.
Kernel 3.1.2-1-ARCH
mesa 7.11.2 with gallium3d
--
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=37069
Bug ID: 37069
Summary: pluginloader.exe crashes when using netflix
Product: Wine
Version: unspecified
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: ehlers.kerri(a)gmail.com
Created attachment 49258
--> http://bugs.winehq.org/attachment.cgi?id=49258
error log
wine crashes when using netflix after recent updates.
--
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=30942
Bug #: 30942
Summary: iWisoft Flash SWF to Video Converter crashes Unity
Product: Wine
Version: 1.5.5
Platform: x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: damage3025(a)gmail.com
Classification: Unclassified
I use Ubuntu 12.04 x86_64, the wine is installed through PPA.
$ wine --version
wine-1.5.5
$ rm -r ~/.wine/
$ wine swfconverter.exe &> install.log
$ cd ~/.wine/drive_c/Program\ Files/iWisoft\ Flash\ SWF\ to\ Video\ Converter/
$ wine swf2avi.exe
# Magic happens!
# Terminal Windows disappears
# Unity Panel disappears
--
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=20088
Summary: Darkest of Days crashes after the main menu
Product: Wine
Version: 1.1.29
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: syberghost(a)gmail.com
Created an attachment (id=23649)
--> (http://bugs.winehq.org/attachment.cgi?id=23649)
command line output
Every time I run it, the main menu comes up, background music plays, but if I
click "New Game" it crashes. Output attached.
--
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=31170
Bug #: 31170
Summary: Realmyst crashat start
Product: Wine
Version: 1.4
Platform: x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: major
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: legluondunet(a)free.fr
Classification: Unclassified
RealMyst crash at launch with all the WIne version except 1.1.5.
With all version Install OK and you can access video option.
The debug log attached made with wine 1.4 version.
Thanks for your help.
--
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=28030
Summary: wine fails to run when compiled with llvm-gcc
Product: Wine
Version: 1.3.26
Platform: x86
OS/Version: Linux
Status: NEW
Severity: normal
Priority: P2
Component: build-env
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: austinenglish(a)gmail.com
austin@atialien:~/wine-git$ ./wine notepad
wine: created the configuration directory '/home/austin/.wine'
wine: Unhandled page fault on execute access to 0x0033efe8 at address 0x33efe8
(thread 0012), starting debugger...
wine: Unhandled page fault on execute access to 0x7eccbe78 at address
0x7eccbe78 (thread 0014), starting debugger...
wine: Unhandled page fault on execute access to 0x7edaae78 at address
0x7edaae78 (thread 0010), starting debugger...
wine: Unhandled page fault on execute access to 0x7ed44e78 at address
0x7ed44e78 (thread 000b), starting debugger...
wine: Unhandled page fault on execute access to 0x0033efe8 at address 0x33efe8
(thread 001e), starting debugger...
wine: Unhandled page fault on execute access to 0x7ea30e78 at address
0x7ea30e78 (thread 0009), starting debugger...
winedbg: Internal crash at 0x7ec92e78
austin@atialien:~/wine-git$ llvm-gcc --version
llvm-gcc (GCC) 4.2.1 (Based on Apple Inc. build 5658) (LLVM build)
Copyright (C) 2007 Free Software Foundation, Inc.
This is free software; see the source for copying conditions. There is NO
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
--
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=34994
Bug #: 34994
Summary: Application flickers after installing AMD non-free
drivers
Product: Wine
Version: 1.6
Platform: x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: major
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: turley714(a)gmail.com
Classification: Unclassified
Created attachment 46631
--> http://bugs.winehq.org/attachment.cgi?id=46631
wine YNAB\ 4.exe &> log.txt
I've been using YNAB 4 for some time in with amd open source drivers. After
installing the AMD proprietary drivers (tried both 13.11 beta and fglrx
provided with my distro) the application flickers and is unusable.
Linux Mint 16 RC
AMD Radeon HD 5800
Wine 1.6
--
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=33868
Bug #: 33868
Summary: Sims Medieval (and probably many other games)
fullscreen isn't fullscreen on Ubuntu 13.04
Product: Wine
Version: 1.6-rc3
Platform: x86
OS/Version: Linux
Status: NEW
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: dank(a)kegel.com
Classification: Unclassified
Ah, Unity.
I just tested Sims Medieval, which defaults to fullscreen... but Ubuntu (13.04,
but probably also earlier versions)'s Unity launcher bar on the left is
still shown, as is the global menu bar... so the game is shortchanged in both
X and Y, and is therefore cut off slightly.
Makes it hard to play.
I've seen this on several games in the past, too.
This is probably a Unity bug,
https://bugs.launchpad.net/unity/+bug/734908
but I think it deserves mention here, too.
--
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=33047
Bug #: 33047
Summary: Netflix-desktop. Programme shows error and terminates
when you attempt to play a specific film
Product: Wine
Version: unspecified
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: critical
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: nickroydavies(a)hotmail.com
Classification: Unclassified
Created attachment 43686
--> http://bugs.winehq.org/attachment.cgi?id=43686
crash log from netflix-desktop
netflix desktop appears to have been installed correctly. Application loads
correctly and displays the netflix home page. Login as netflix user works fine
and displays the page showing most popular films/TV programmes.
When you click on a particular movie to play it the screen turns black and the
following error message is displayed:
"The programme plugin-container.exe has encountered a serious problem and needs
to close. We are sorry for the inconvenience."
The application then has to be closed.
I have tried uninstalling the package and reinstalling it several times.
The OS I am using is Linux Mint Maya.
I have attached the details from the crash log.
Thank you for your consideration.
Nick
--
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=29200
Bug #: 29200
Summary: Gothic 1 stops rendering graphics
Product: Wine
Version: unspecified
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: major
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: Schlosser.T(a)seznam.cz
Classification: Unclassified
Created attachment 37697
--> http://bugs.winehq.org/attachment.cgi?id=37697
Console output until the stuck point
When playing Gothic everything works fine for 10 - 15 minutes, then the
rendering just stops and the screen is left as it was. The game works normally
(I can hear footsteps, jump to menu, save (esc + 3x enter) and exit (esc + 3x
up + enter + up + enter). However it is really annoying to quit a game every 10
- 15 minutes to restart it. After restart the save game is working normally
(for the next 10 - 15 minutes).
Fedora 16 (Verne) x86_64
Wine v. 1.3.29 (from Fedora repository)
VGA compatible controller: ATI Technologies Inc Mobility Radeon HD 2400
direct rendering: Yes
OpenGL vendor string: X.Org
OpenGL renderer string: Gallium 0.4 on AMD RV610
OpenGL version string: 2.1 Mesa 7.11
OpenGL shading language version string: 1.20
Installed (Gothic didn't work without it at all)
libtxc_dxtn.i686 1:1.0.0-1.fc15 @rpmfusion-free
I also tried kmod-catalyst (proprietary drivers) and running it with wine64
none of which helped.
--
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=25031
Summary: Warcraft 3 display is upside down
Product: Wine
Version: 1.3.6
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: 280419952(a)mail.ru
Created an attachment (id=31723)
--> (http://bugs.winehq.org/attachment.cgi?id=31723)
the part of the log WINEDEBUG=+tid,+relay,+seh starting 200 lines above and
ends 200 lines below first "trace:seh"
Display is upside down .
--
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=29027
Bug #: 29027
Summary: Mozilla Thunderbird 7.0.1 leaves gray areas on screen
when opening and closing menus
Product: Wine
Version: 1.3.32
Platform: x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: alexhenrie24(a)gmail.com
Classification: Unclassified
Created attachment 37377
--> http://bugs.winehq.org/attachment.cgi?id=37377
Screenshot
Mozilla Thunderbird 7.0.1 leaves gray areas on the screen when opening and
closing menus. Some are translucent, some are solid gray. The gray areas go
away when the controls they are covering are redrawn. Interestingly, the gray
areas can actually leave the bounds of the window itself, as shown in the
attached screenshot. When I set Wine to emulate a virtual desktop, the problem
goes away.
--
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=24577
Summary: Insaniquarium Deluxe 1.1 does not run at all with
FGLRX
Product: Wine
Version: 1.3.3
Platform: x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: gururise(a)gmail.com
I have Insaniquarium Deluxe 1.1 installed on two different computers for my
kids. Both are running the latest Ubuntu 10.04 using wine 1.3.3
On one, I run the nvidia binary driver and Insaniquarium works fine (in desktop
mode) under wine.
On the other, I run the fglrx binary driver (v 10.9 hotfix) and Insaniquarium
will not even start up and spit outs the following error:
fixme:win:EnumDisplayDevicesW ((null),0,0x32ef50,0x00000000), stub!
fixme:ddraw:ddraw7_GetMonitorFrequency iface 0x134820, frequency 0x5d453c stub!
fixme:x11drv:X11DRV_desktop_SetCurrentMode Cannot change screen BPP from 32 to
16
fixme:mixer:ALSA_MixerInit No master control found on HDA ATI HDMI, disabling
mixer
err:seh:setup_exception_record stack overflow 876 bytes in thread 0009 eip
7ed9e177 esp 00230fc4 stack 0x230000-0x231000-0x330000
--
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=33273
Bug #: 33273
Summary: no sound with alsa or oss and winecfg crash
Product: Wine
Version: 1.4.1
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: critical
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: scrimekiler(a)yahoo.fr
Classification: Unclassified
Created attachment 44015
--> http://bugs.winehq.org/attachment.cgi?id=44015
aplay -l output
When I set sound driver to "oss" in regedit :
-in winecfg : "selected driver" is set to none. No other choices available
-launching an app with wine works but no sound
When I set sound driver to "alsa" in regedit :
-in winecfg : clicking on audio tab make winecfg crash (and no way to kill it
even with kill -9)
-launching an app make wine crash (also no way to kill the app even with kill
-9)
Curently using wine-1.4.1
Same bug happens with wine-1.5.26
Sounds works only with wine-1.2.3 with oss or jack (not alsa)
It seems it's related to my soundcard, which has a lot of mixer elements.All
other native applications can use alsa without any problem.
Runing on gentoo kernel 3.7.10
gcc version 4.6.3
xorg-x11 7.4-r2
Soundcard : Terratec Phase88
--
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=31261
Bug #: 31261
Summary: League of Legends: server always busy with builtin
wininet; crashes with native
Product: Wine
Version: 1.5.9
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wininet
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: rmmartins(a)gmail.com
Classification: Unclassified
When I try to log in to League of Legends with builtin wininet (no override) it
always answers with "server busy, try again later". When I install wininet with
winetricks and try to log in again, it crashes with attached backtrace, no
matter what login/password I use.
My system is Debian Sid 32-bit, wine 1.5.9 (compiled by me, with patches, as
instructed by Daniel Riffo on AppDB). I don't know if it helps, but the exact
same problem happens with wine 1.4.1 provided by Sid's apt repo.
It's my first bug report, so if I need to send any more info, please tell me.
--
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=31281
Bug #: 31281
Summary: Red Alert 3 on Mac renders vertices in software
Product: Wine
Version: 1.5.9
Platform: x86
OS/Version: Mac OS X
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: directx-d3d
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: cdavis(a)mymail.mines.edu
Classification: Unclassified
Playing Red Alert 3 on my Mac (the Windows version, with Wine, since I bought
it before there even was a Mac version) is extremely slow, almost to the point
of being unplayable.
So, I investigated with Apple's handy OpenGL Profiler, and I discovered, much
to my horror, that the GL was rendering the vertices in software. Huh?
In general, this normally happens when Mac OS thinks the GPU can't do it in
hardware. I can't figure out why it thinks that in this case, though. As far as
I can tell, we aren't exceeding any of the limits that we can query with GL's
Get command, so I suspect that the vertex shader is exceeding some sort of
limit.
Hacking Mesa to set the NoRecovery PFA doesn't help. I was baffled... until I
went back, re-read the documentation, and discovered that NoRecovery *only
affects fragment processing*. What? So there's no way to force only-hardware
vertex processing? (Thank God fragment processing was still in hardware, or it
would have been even worse.)
--
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=23865
Summary: Microsoft Wine Guide (16-bit) unable to find files
whose names end with .
Product: Wine
Version: 1.2
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: minor
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: markk(a)clara.co.uk
Created an attachment (id=29962)
--> (http://bugs.winehq.org/attachment.cgi?id=29962)
+relay,+int21,+mmio log compressed with bzip2
This bug applies to Microsoft Wine Guide 1.0a, a multimedia CD-ROM from 1995
which works with Windows 3.1 and later.
The program is unable to read some files from the CD-ROM which have names
ending in a dot. For example:
$ ls -l /media/cdrom/mswptime/vo/
total 5142
-rwxrwxrwx 1 root root 136888 1995-01-28 12:48 bordeaux.
-rwxrwxrwx 1 root root 133676 1995-01-28 12:48 burgundy.
-rwxrwxrwx 1 root root 82410 1995-01-28 12:48 flute.
-rwxrwxrwx 1 root root 123796 1995-01-28 12:49 port.
-rwxrwxrwx 1 root root 206696 1995-01-28 12:50 red.
-rwxrwxrwx 1 root root 3494956 1995-04-05 13:00 score.
-rwxrwxrwx 1 root root 91972 1995-01-28 12:53 sherry.
-rwxrwxrwx 1 root root 705278 1995-01-20 15:07 title.
-rwxrwxrwx 1 root root 178492 1995-01-28 12:41 title.2
-rwxrwxrwx 1 root root 108658 1995-01-28 12:54 white.
The program appears to be trying to open the corresponding name without a dot.
Start wine.exe in the root directory of the CD-ROM. A Microsoft Home splash
window opens, and there are several error dialog boxes about DLLs; click Ignore
to dismiss each one. The main window then opens. A sound should play but
doesn't. This console output:
err:mmio:MMIO_ParseExtA No . in szFileName: "F:\\MSWPTIME\\vo\\title"
Click WINE TASTING WITH OZ, then THE BASICS, then GLASSES. Each loudspeaker
icon should play a sound clip when clicked. Instead you get console output like
this (one line on clicking each button):
err:mmio:MMIO_ParseExtA No . in szFileName: "F:\\MSWPTIME\\vo\\port"
err:mmio:MMIO_ParseExtA No . in szFileName: "F:\\MSWPTIME\\vo\\sherry"
err:mmio:MMIO_ParseExtA No . in szFileName: "F:\\MSWPTIME\\vo\\red"
err:mmio:MMIO_ParseExtA No . in szFileName: "F:\\MSWPTIME\\vo\\white"
err:mmio:MMIO_ParseExtA No . in szFileName: "F:\\MSWPTIME\\vo\\flute"
err:mmio:MMIO_ParseExtA No . in szFileName: "F:\\MSWPTIME\\vo\\burgundy"
err:mmio:MMIO_ParseExtA No . in szFileName: "F:\\MSWPTIME\\vo\\bordeaux"
The attached log is for WINEDEBUG=+relay,+int21,+mmio, starting wine.exe,
clicking Ignore for each dialog box, then clicking the above sequence.
--
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=33746
Bug #: 33746
Summary: Oblivion launcher window does not show up using
winemac.drv
Product: Wine
Version: 1.6-rc1
Platform: x86
OS/Version: Mac OS X
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: winemac.drv
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: zoroaster(a)inode.at
Classification: Unclassified
Created attachment 44688
--> http://bugs.winehq.org/attachment.cgi?id=44688
WINEDEBUG=relay
Music is played but no launcher window appears. Details see attached trace.
--
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=28817
Bug #: 28817
Summary: kernel32/tests/thread.ok fails under valgrind
Product: Wine
Version: 1.3.30
Platform: x86
OS/Version: Linux
Status: NEW
Severity: normal
Priority: P2
Component: ntdll
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: dank(a)kegel.com
Classification: Unclassified
After adding compiler options to work around bug 28640,
kernel32/thread.ok passes on ubuntu 11.10, but under valgrind
it fails with
thread.c:1413: Test failed: Expected FPU control word 0x27f, got 0x37f.
thread.c:1416: Test failed: Expected FPU control word 0x27f, got 0x37f.
thread.c:1420: Test failed: Expected FPU control word 0xf60, got 0xf7f.
thread.c:1423: Test failed: Expected FPU control word 0x27f, got 0x37f.
thread.c:1426: Test failed: Expected FPU control word 0xf60, got 0xf7f.
This could well be a problem with valgrind or how I'm using it. I'm using
VALGRIND_OPTS="--trace-children=yes --track-origins=yes \
--gen-suppressions=all --suppressions=`pwd`/suppressions \
--leak-check=no --num-callers=30 --workaround-gcc296-bugs=yes \
--vex-iropt-precise-memory-exns=yes -v"
export VALGRIND_OPTS
and the stock valgrind 3.6.1 that comes with ubuntu 11.10.
--
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=13606
Summary: msys is *incredibly* slow
Product: Wine
Version: 1.0-rc3
Platform: Other
OS/Version: other
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: kirr(a)landau.phys.spbu.ru
When running configure of a program in msys under wine the whole process is
incredibly slooooow compared to the same under Windows.
I've tracked the problem down to following:
$ export WINEPREFIX=`pwd`/msystest
$ wineboot -i
$ cd msystest/drive_c
$ wget -c
http://downloads.sourceforge.net/mingw/msysCORE-1.0.11-2007.01.19-1.tar.bz2
$ mkdir msys
$ cd msys
$ tar xfj ../msysCORE-1.0.11-2007.01.19-1.tar.bz2
$ wineconsole bin/sh.exe --login -i
--- in msys console ---
# time for i in 1 2 3 4 5; do echo $i; done
...
real 0m0.021s
# time for i in 1 2 3 4 5; do /bin/echo $i; done
...
real 0m3.396s
i.e. each fork of /bin/echo takes approximately almost *1* second!
On Windows both examples runs fast, although /bin/echo case is slightly slower,
but still speed ratio is not *that* big.
Thanks beforehand.
--
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=37560
Bug ID: 37560
Summary: Portal 2: page fault on read access to 0x00000006 in
32-bit code during gameplay
Product: Wine
Version: 1.7.31
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: n296869(a)rtrtr.com
Distribution: Ubuntu
Created attachment 49983
--> https://bugs.winehq.org/attachment.cgi?id=49983
EIP:f61cc384 ESP:16b8d570 EBP:7e0dead8 EFLAGS:00210202( R- -- I - - - )
When playing Portal 2 I receive this error and game crashed.
--
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=35353
Bug ID: 35353
Summary: mono/eglib/src/gutf8.c: many bad if expressions ?
Product: Wine
Version: unspecified
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: programs
Assignee: wine-bugs(a)winehq.org
Reporter: dcb314(a)hotmail.com
Classification: Unclassified
I just ran the static analyser "cppcheck" over the
source code of wine-mono-4.5.2. It said many things
including
1.
mono/eglib/src/gutf8.c:294]: (style) Expression '(X & 0xc0) != 0xb0' is always
true.
Source code is
if ((*p & 0xc0) != 0xb0)
Suggest code rework.
2.
[../../../mono/eglib/src/gutf8.c:306]: (style) Expression '(X & 0xc0) == 0xb0'
is always false.
[../../../mono/eglib/src/gutf8.c:331]: (style) Expression '(X & 0xc0) == 0xb0'
is always false.
[../../../mono/eglib/src/gutf8.c:294]: (style) Expression '(X & 0xc0) != 0xb0'
is always true.
[../../../mono/eglib/src/gutf8.c:306]: (style) Expression '(X & 0xc0) == 0xb0'
is always false.
[../../../mono/eglib/src/gutf8.c:331]: (style) Expression '(X & 0xc0) == 0xb0'
is always false.
--
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=32282
Bug #: 32282
Summary: Wine crashes randomly and often with Catalyst
driver>12.9
Product: Wine
Version: 1.5.14
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: nob.dir.info(a)gmail.com
Classification: Unclassified
I tested all version of Wine in the 1.5 branch, and I found that with Wine
1.5.14 and further, games like League of Legends, Portal 2 or Guild Wars 2 are
crashing really often and randomly (in fact, X.org freeze as well as my mouse
and my keyboard, and I have then to restart my PC).
I didn't have time to proceed to a regression testing yet, but I will do it.
Cordially,
nob.
--
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=31766
Bug #: 31766
Summary: Moving table in Shareaza causes wine to generate
invalid X11/XRender requests
Product: Wine
Version: 1.5.11
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: linuxhippy(a)gmail.com
Classification: Unclassified
Created attachment 41794
--> http://bugs.winehq.org/attachment.cgi?id=41794
screenshot
When moving table headers in Shareaza (a GPL filesharing application), I get a
graphic corruption when uring Intel's new SNA acceleration architecture.
I reported the corruption to the intel driver development team, and Chris
Wilson concluded after analyzing the problem, that wine generates invalid
XRender/X11 requests - and that it worked before only by accident.
Quote:
> Unbelievably, this is actually a bug in Wine. It is abusing a PICT_x8r8g8b8
> format by trying to copy a PICT_a8r8g8b8 picture through an alphaless temporary
> and expecting the alpha-channel to be preserved. The second bug is that the
> coordinates/size of that temporary drawable are wrong - far greater than the
> apparently intended area of the columns to be redrawn.
> If I disable the shortcut to use the blit path for xrgb->argb copy, then I can
> reproduce the same errors in UXA. Vice versa, if I prefer the blit path, then
> the problem is masked in SNA.
Screenshot as well as a link to a youtube-video illustrating the issue are
available on the original bug-report:
https://bugs.freedesktop.org/show_bug.cgi?id=55164
--
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=24602
Summary: NWN2 suffers from shadows flickering on ATI cards
(fglrx driver)
Product: Wine
Version: 1.3.3
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: directx-d3dx9
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: NightNord(a)gmail.com
CC: wine-bugs(a)winehq.org
Created an attachment (id=31069)
--> (http://bugs.winehq.org/attachment.cgi?id=31069)
Character close view
This strange effect persists with any possible configurations (including those
in gfxoptions debug menu). It's followed with dozens of
fixme:d3d_surface:IWineD3DBaseSurfaceImpl_Blt Filters not supported in software
blit
messages, but I'm not sure, that it's directly related to the filters missing,
but I've tried to comment-out render-target check, so direct opengl
implementation of blit called always - it seems to gone, but this was unstable
and in any following runs I've got completelly black scene, including mini-map
(effects, selections, magic spells and soon - all in place, but all surfaces
are blackened).
I'm attaching screenshot of player's character, close view and far view. You
may see some dotted patterns on characters clack, or on terrain around him.
This effect hard to get screenshoted as it's mostly visible while moving
camera, mouse, character and soon.
It's might be related to other bug, that affects only indoor areas, that I'll
post soon also.
Tested on:
wine-1.3.3
kernel 2.6.35 with 'nopat' kernel option
ati-drivers (fglrx): 10.9, ATI Mobility Radeon HD4520
Wine direct3d configs:
OffscreenRenderingMode=fbo
VideoMemorySize=512
UseGLSL=enabled
Overrides and installed packages:
vcrun2005 and d3dx9 from winetricks (without this game just can't start due to
unimplemented features).
devenum.dll and dxdiagn.dll (without this, game can't find any video device and
refuses to run).
--
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=31121
Bug #: 31121
Summary: Wrong FSF adress in wine-mono licenses
Product: Wine
Version: unspecified
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: mscoree
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: andreas.bierfert(a)lowlatency.de
Classification: Unclassified
While packaging wine-mono for fedora, rpmlint pointed out that the following
files carry a wrong FSF address:
mono/COPYING.LIB
mono/mcs/LICENSE.GPL
mono/mcs/LICENSE.LGPL
More information on the subject:
http://fedoraproject.org/wiki/Common_Rpmlint_issues#incorrect-fsf-address
--
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=28839
Bug #: 28839
Summary: Modal window + a opened menu => mouse unusable
Product: Wine
Version: 1.3.26
Platform: x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: user32
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: pixecs(a)yahoo.com
Classification: Unclassified
Created attachment 37034
--> http://bugs.winehq.org/attachment.cgi?id=37034
illustrative picture
os: OpenSUSE 11.4 x86_64
kernel: 2.6.37.6-0.5-desktop
desktop: kde4
wine version: wine-1.3.26-168-g6ee95c7 compiled with
--prefix=/usr --x-libraries=/usr/X11R6/lib --x-includes=/usr/include/X11/
--with-x
wine configured in windowed mode (1024x768)
application: winrar v4.01
WinRAR trial period has expired and in these conditions a modal window "Please
purcase WinRAR license" appears in 2-3 seconds after opening the application.
The problem arises when:
1) i launch the program
2) immediately open a menu (from winrar like File, Options)
3) the license expiration window appear
4) i still have the menu opened
The problem is that after the appearance of modal window i can not use the
mouse on desktop (items or windows from the desktop no longer reacts to mouse)
but the keyboard still works (for example, i can press Alt + Tab).
After pressing Alt + Tab and another window receives the focus the mouse can be
used again.
--
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=33854
Bug #: 33854
Summary: WaveLab 4 crashes at startup
Product: Wine
Version: 1.5.11
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: winex11.drv
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: b7.10110111(a)gmail.com
Classification: Unclassified
After some time of working fine in wine, WaveLab is now crashing every startup.
I've traced this problem to start at this commit:
6bfcb347bfff24d7268e23b3686028373631c642 is the first bad commit
commit 6bfcb347bfff24d7268e23b3686028373631c642
Author: Alexandre Julliard <julliard(a)winehq.org>
Date: Tue Aug 14 13:38:03 2012 +0200
winex11: Remove X11 locking around simple X calls.
:040000 040000 3869837cd55e7e8c3e195295694051301ef6197c
69fa8148595adaf05c62cce8578a864283bc8849 M dlls
See several tries to start it (they give different output depending on whether
it's a first start after installing wine): http://pastebin.com/fBkGEZbh .
Reverting the commit makes it work normally.
--
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=34588
Bug #: 34588
Summary: rpcrt4_test.exe fails to delay load secur32.dll on ARM
Product: Wine
Version: 1.7.2
Platform: arm
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: secur32
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: Stefan.Leichter(a)camLine.com
Classification: Unclassified
Created attachment 46063
--> http://bugs.winehq.org/attachment.cgi?id=46063
"wine rpcrt4_test.exe rpc" console log with +seh enabled
While trying to find the reason for the timeouts in my winetests runs (Tag
arm-sle85276) i found that secur32.dll can not be delay loaded because of an
exception in function DllMain().
The exception happens when calling the fork() function in function
fork_helper()
http://source.winehq.org/git/wine.git/blob/81213a88e83b19c73e244e00bffac2e4…
The console log of "wine rpcrt4_test.exe rpc" with +seh is attached.
--
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=31800
Bug #: 31800
Summary: DirectX games crash in r300_dri.so with Gallium
Product: Wine
Version: 1.5.13
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: directx-d3d
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: rene.kijewski(a)fu-berlin.de
Classification: Unclassified
Created attachment 41832
--> http://bugs.winehq.org/attachment.cgi?id=41832
WINEDEBUG=+relay,-debug backtrace
I cannot run DirectX games since I switched to the "xorg-edgers" PPA, with uses
bleeding edge Xserver/Mesa packages and employs the Gallium renderer for my
Radeon Xpress 200M card.
The debug traces show that crash happens in r300_dri.so code:
"Unhandled exception: page fault on read access to 0x74dd3598 in 32-bit code
(0x7d10623a)."
Repeatable: always.
System: Ubuntu Precise using x64 on a Samsung R40 laptop
Wine: Self-built, newest tag (1.5.13), with C(XX)FLAGS = -g3 -ggdb -O0
--
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=35327
Bug ID: 35327
Summary: Civilization 4 BTS print screen
Product: Wine
Version: 1.7.5
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: minor
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: iddqd(a)yahoo.com
Classification: Unclassified
Created attachment 47117
--> http://bugs.winehq.org/attachment.cgi?id=47117
program error details
When using Civilization 4 BTS's print screen (not linux print screen), the game
crashes.
--
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=34391
Bug #: 34391
Summary: PPSSPP Crash on opening
Product: Wine
Version: 1.6
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: blocker
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: alaskancaveman(a)Live.com
Classification: Unclassified
Created attachment 45782
--> http://bugs.winehq.org/attachment.cgi?id=45782
Crash Log
PPSSPP 9.1 x86 win http://www.ppsspp.org/
current setup :::
amd A6 HD6250G Cayman
Linux Mint 15 Ubuntu Raring base 13.04
wine1.6
kernel 3.11rc7
mesa 9.3dev
libg3dvl-mesa (gallium)
mod: radeon.dpm=1 added kernel boot paramater
mod: R600_DEBUG=SB etc/environment
:::
the catalyst drivers 13.8b2 will allow 2 open but zero function beyond that
without crash... (no 3.11 support yet for Catalyst)
both gallium and Catalyst worked fine before 3.11 kernel upgrade from 3.8...
which i did after mesa upgrade
neither of the 2 mods make any difference on program crash or not
--
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=31978
Bug #: 31978
Summary: LWA_COLORKEY support significantly slows down GOG
installer verification progress bar
Product: Wine
Version: 1.5.15
Platform: x86
OS/Version: Mac OS X
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: winex11.drv
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: jonas.bugzilla(a)gmail.com
Classification: Unclassified
Installers from gog.com always first verify their own integrity. During this
period they display a custom progress bar, which makes use of the LWA_COLORKEY
attribute.
Prior to wine containing support for LWA_COLORKEY, this verification process
was basically limited by the speed of the hard drive. Since that support has
been added, the verification has become much slower, and furthermore the
progress bar flickers a lot.
I've bisected the cause to
commit edea44f0ff995aadaaadb866a022832c16301e4a
Author: Alexandre Julliard <julliard(a)winehq.org>
Date: Wed Sep 12 16:00:18 2012 +0200
winex11: Add support for the LWA_COLORKEY layered window attribute.
To reproduce: it should happen with any installer downloaded from gog.com. I
tested with the freely available http://www.gog.com/en/gamecard/teenagent
I'm using XQuartz 2.7.4 on Mac OS X 10.6.8. If you need any traces, let me know
--
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=31946
Bug #: 31946
Summary: Atari800Win Plus crashes on start
Product: Wine
Version: 1.4.1
Platform: x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: jaromir.obr(a)gmail.com
Classification: Unclassified
Created attachment 42088
--> http://bugs.winehq.org/attachment.cgi?id=42088
backtrace
Steps to reproduce:
1) Run the application
Expected result:
It starts
Actual result:
It crashes
Used SW:
--------
wine 1.4.1-0ubuntu1
Atari800Win PLus 4.1 (https://github.com/Jaskier/Atari800Win-PLus/downloads)
Ubuntu 12.04, amd64
kernel: 3.5.0-17-generic #28-Ubuntu
--
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=35438
Bug ID: 35438
Summary: FBO backend doesn't work on some Intel iGPUs
Product: Wine
Version: 1.7.10
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: major
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: Zatloukal.Frantisek(a)gmail.com
Classification: Unclassified
The default backend (FBO) doesn't work on some Intel iGPUs(tested Gen3).
Tested GPU: 00:02.0 VGA compatible controller: Intel Corporation Atom Processor
D4xx/D5xx/N4xx/N5xx Integrated Graphics Controller
Tested OS: Fedora Rawhide, Ubuntu 12.04
Tested Mesa versions: 9.0, 10.0
Tested affected apps/games: Age of Mythology, ePSXE (I believe this affects
most of DirectX 9.0 apps)
Switching from fbo to backbuffer solves problems in both tested apps.
If fbo is active, terminal log is spammed by:
epsxe:
fixme:d3d:context_check_fbo_status Location SFLAG_INTEXTURE (0x10000).
fixme:d3d:context_check_fbo_status Color attachment 0: (0x1f9ad0)
WINED3DFMT_B8G8R8X8_UNORM 1024x600 0 samples.
err:d3d:context_bind_texture >>>>>>>>>>>>>>>>> GL_INVALID_FRAMEBUFFER_OPERATION
(0x506) from glBindTexture @ context.c / 2031
fixme:d3d:context_check_fbo_status FBO status GL_FRAMEBUFFER_UNSUPPORTED
(0x8cdd)
aom:
fixme:d3d:resource_check_usage Unhandled usage flags 0x8.
fixme:d3d:resource_check_usage Unhandled usage flags 0x8.
fixme:d3d:resource_check_usage Unhandled usage flags 0x8.
fixme:d3d:buffer_internal_preload Too many declaration changes or converting
dynamic buffer, stopping converting
err:d3d:wined3d_debug_callback 0x2373e18: "GL_INVALID_ENUM in
glLight(light=0x1140b8)".
err:d3d:transform_view >>>>>>>>>>>>>>>>> GL_INVALID_ENUM (0x500) from glLightfv
posn @ state.c / 3917
err:d3d:wined3d_debug_callback 0x2373e18: "GL_INVALID_ENUM in
glLight(light=0x1140b8)".
err:d3d:transform_view >>>>>>>>>>>>>>>>> GL_INVALID_ENUM (0x500) from glLightfv
dirn @ state.c / 3919
--
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=27473
Summary: Wine Changing Window Decorations in Conflict with
Window Managers
Product: Wine
Version: unspecified
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: winex11.drv
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: swt(a)techie.net
When running an application under Wine, if the window manager removes the
window decorations, Wine restores them. For example, under Unity, when an
application is maximized, the WM removes the window decorations as the title
bar is merged with the Unity panel. When this happens with a Wine application,
Unity removes the decorations, but Wine puts them back (sometimes only
partially, leading to a confused experience where the decorations exist but are
invisible).
--
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=33087
Bug #: 33087
Summary: After uninstall file associations to notepad still
persist
Product: Wine
Version: unspecified
Platform: x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: trivial
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: longsincedark(a)lavabit.com
Classification: Unclassified
After uninstalling wine I noticed that, although most traces had been removed,
my file association list still included notepad for almost all text-type
documents. I did manually remove the association for each, but it was a
monotonous process. I would have expected the "uninstall" to remove all traces,
except user created files &/or directories.
This is not a bug on how WINE operates, and I will be re-installing. But it
seems only appropriate that an "uninstall" is just that.
Please consider, I used WinDONT's for many years and dealt with this problem of
uninstall remnants. For most, it may be a minor or trivial issue. But some
users, like myself, have qualms about software that leaves too many remnants
after uninstalling.
Keep up the fabulous work!
--
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=30256
Bug #: 30256
Summary: Ancients of Ooga: very slow rendering in mid game
Product: Wine
Version: 1.3.22
Platform: x86
OS/Version: Linux
Status: NEW
Keywords: regression
Severity: normal
Priority: P2
Component: directx-d3d
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: gyebro69(a)gmail.com
CC: matteo.mystral(a)gmail.com
Classification: Unclassified
Regression SHA1: 002674e49d3343d2ad4670081276e38af867eefe
Created attachment 39520
--> http://bugs.winehq.org/attachment.cgi?id=39520
terminal output
Ancients of Ooga is an indie platformer, developed by NinjaBee.
The demo version of the game is Steam-only:
http://store.steampowered.com/app/91810/
The problem: performance is okay in the menus and during the intro video. As
soon as the video ends and the game is loaded, framerate drops dramatically.
While in the menus I get 50 fps, in mid-game I get 1-2 fps or less. This makes
the game unplayable.
The problem appeared in Wine-1.3.22 and is still present in 1.5.0. Actually,
Wine-1.3.21 is the one and only version being capable of running the game
normally. All previous versions fail to start the game correctly, and all later
versions have the reported performance issue.
When I start a new game I get 30 fps with 1.3.21, and 1-2 fps with 1.3.22.
The result of the regression test:
002674e49d3343d2ad4670081276e38af867eefe is the first bad commit
commit 002674e49d3343d2ad4670081276e38af867eefe
Author: Matteo Bruni <mbruni(a)codeweavers.com>
Date: Mon Jun 6 17:44:43 2011 +0200
wined3d: Fix glDrawBuffers() optimization.
:040000 040000 afbbbb65e869d58ae00b56c627228bd6e9d2d1bb
71478cb542317c0b2e3c1dc2b8155a6ff4dcd44a M dlls
The problem can be reproduced with the Steam demo version (the game needs
native d3dx9_36.dll). Please let me know if you need a log with debug channels
enabled.
Fedora 16
Nvidia 250 / driver 290.10
X.Org X Server 1.11.4
--
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=37831
Bug ID: 37831
Summary: Wine 1.7.33 incompatible with AMD Catalyst 14.12
"Omega"
Product: Wine
Version: 1.7.33
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: blocker
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: castarco(a)gmail.com
Distribution: ---
I don't know if the bug is in the AMD Catalyst package or in the Wine package
(I think it's a package bug, not a software bug):
There is a conflicting package with catalyst (fglrx-core_14.501-0ubuntu1_amd64)
which is a dependency on Wine (in Ubuntu):
ocl-icd-libopencl1
.
--
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=30924
Bug #: 30924
Summary: Uncapture Mouse in Fullscreen Windows
Product: Wine
Version: unspecified
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: enhancement
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: songandsilence27(a)gmail.com
Classification: Unclassified
In winecfg, there is an option, under the Graphics tab to automatically capture
the mouse in fullscreen windows.
When using the emulated virtual desktop, certain programs freezing, crashing,
etc., can cause the mouse to stay within the emulated virtual desktop. Killing
wine or wineserver causes the mouse to stay within the confines of the virtual
desktop, rendering the (actual, X11) desktop useless. The Virtual desktop
window will grey out, becoming unresponsive to any and all input meant to close
it, including keystrokes such as ALT+F4 and clicking the "close" button.
Opening a X11-managed window (e.g., a terminal emulator) inside of the window
area will allow keyboard input, and depending on placement, can free the mouse
from the virtual desktop window, however, mouse clicks are not functioning in
other X11 windows, panels, etc.
Killing and restarting the X server via CTRL+ALT+Bksp or switching to a second
Virtual Console (e.g., tty2) and issuing "pkill X; startx" will temporarily
solve the issue (unless the offending program is run and freezes/crashes
again).
There should be a key combination to release the mouse back to the X11 desktop
environment.
--
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=27706
Summary: [integration] Menu entries generated by wine when
installing apps are not compatible with Linux Mint
menu
Product: Wine
Version: 1.3.23
Platform: All
OS/Version: Linux
Status: UNCONFIRMED
Severity: trivial
Priority: P2
Component: programs
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: wine(a)rodrigosilva.com
The command wine generates for menu entries are like this (example):
env WINEPREFIX="/home/rodrigo/.wine" wine C:\\windows\\command\\start.exe /Unix
/home/sb/.wine/dosdevices/c:/users/sb/Start\ Menu/Programs/Microsoft\
Office/Microsoft\ Office\ Word\ 2007.lnk
For some reason they dont work in Linux Mint's main menu (bad parser in
mintmenu?). While this can be considered Mint's fault, its MUCH easier for wine
to solve this, but just double-quoting the last parameter (the path to .lnk
file) and removing escaping-backslashes from it:
So the abve example would turn into this:
env WINEPREFIX="/home/sb/.wine" wine C:\\windows\\command\\start.exe /Unix
"/home/sb/.wine/dosdevices/c:/users/sb/Start Menu/Programs/Microsoft
Office/Microsoft Office Word 2007.lnk"
Its an easy fix that wouldnt break anything for other distros, and would make
Mint work out-of-the-box, So I would be glad to see this "fixed"
References:
http://bugs.launchpad.net/mintmenu/+bug/714848http://forums.linuxmint.com/viewtopic.php?f=47&t=57536
--
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=24392
Summary: Mass Effect 2: Lair of the Shadow Broker: Skycar chase
scene renders nothing
Product: Wine
Version: unspecified
Platform: x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: megatog615(a)gmail.com
After Shepard and Liara(and your choice of team member) enter the Skycar, a
loading screen appears. After the loading screen, a mini game starts where you
drive the skycar, presumably to catch Vasir(I haven't been able to see it yet
due to this bug). The problem is, the game is rendering a blank image. The only
other things that I can see are the UI and the game's darker edges film
effect(the circular banding around the edges in the screenshot).
--
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=32072
Bug #: 32072
Summary: resident evil 4 : not start game
Product: Wine
Version: 1.5.15
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: critical
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: king.infet(a)gmail.com
Classification: Unclassified
Created attachment 42280
--> http://bugs.winehq.org/attachment.cgi?id=42280
save log backtrace
i install resident evil 4 with wine 1.5.15 version.
after installation -> start game and crash wine .
out the backtrace.
--
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=33710
Bug #: 33710
Summary: Kingsoft Office 2012: Attempt to open file causes
desktop environment to crash
Product: Wine
Version: 1.4
Platform: x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: dmn2004404(a)gmail.com
Classification: Unclassified
Upon starting and running a Kingsoft Office program, and then attempting to
load a .DOC or .XLS or .PPT file, the program stops responding for about a
second, and then the entire desktop environment crashes and takes the opened
program with it. Then the desktop environment restarts and I am forced to log
in to my OS once more.
--
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=32948
Bug #: 32948
Summary: Wine crashes on file operation in 32 bits mode
Product: Wine
Version: 1.5.23
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: numkem(a)gmail.com
Classification: Unclassified
Just after upgrading to KDE 4.10 on Arch, every file diaglog inside office
applications makes the application hang than it produce this stack trace.
--
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=30463
Bug #: 30463
Summary: World of Warcraft 5.0 Crashes on Character Creation
Screen (invalid float operation)
Product: Wine
Version: 1.5.2
Platform: x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: christopher.mcintyre(a)gmail.com
Classification: Unclassified
Created attachment 39829
--> http://bugs.winehq.org/attachment.cgi?id=39829
Backtrace of crash from wine
I can log into characters that are already created (transfers from live
realms), however I get the attached error (backtrace.txt) when I click the
button to create a character.
I am using the ati 12.1 drivers, fyi.
--
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=39027
Bug ID: 39027
Summary: Dungeons and Dragons Neverwinter: very slow startup
when launching the game for the first time
Product: Wine
Version: unspecified
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: maxrd2(a)smoothware.net
Distribution: ---
Have installed the game from steam and launched it afterwards.
Starting it took like 10-15 minutes, so i thought it hanged or something.
After that initial start the game launches much faster but it is still pretty
slow like 3-5 minutes.
I see a bunch of these warning on stdout.. like 100 lines every second:
fixme:win:GetRawInputBuffer (pData=(nil), pcbSize=0x1693e7c8, cbSizeHeader=16)
stub!
fixme:win:GetRawInputBuffer (pData=0x2cca0c0, pcbSize=0x1693bb68,
cbSizeHeader=16) stub!
Using WINEDEBUG=-all doesn't affect the loading times.
--
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=27600
Summary: Screen fills with visual artifacts in World of Tanks.
Product: Wine
Version: unspecified
Platform: x86
URL: http://game.worldoftanks.eu/update
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: directx-d3d
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: vincas.miliunas(a)gmail.com
CC: stefan(a)codeweavers.com
Created an attachment (id=35280)
--> (http://bugs.winehq.org/attachment.cgi?id=35280)
Output log, but doesn't show anything important.
Time to report an another WINE regression for World of Tanks, in this one
screen fills with a mixture of triangles and font textures.
The regression was brought by:
commit 68b15bc5ffe6ddf5d08cbc13479eaf718ad5e39f
Author: Stefan Dösinger
Date: Tue Apr 19 21:24:26 2011 +0200
wined3d: Give GL_ARB_map_buffer_range another try.
Nvidia's 270.xx.yy driver series fix the glMapBuffer alignment issues that
c
performance problems. If the user is using an older driver we now drop the
V
doublebuffered loading, which means that we fall back to the current
behavio
needed. Dynamic VBOs are needed on Nvidia drivers for
GL_ARB_instanced_array
(the patch was actually committed on Jun 14)
The bug can be reproduced by logging in an account and clicking on the depot,
store, statistics or other tabs in the garage.
Alt-tabing in and out resets the screen back to normal (using virtual desktop).
During the actual gameplay, the frame rate is a lot lower then normal. Notable
fixme for gameplay is:
fixme:d3d:wined3d_buffer_preload Too many declaration changes or converting
dynamic buffer, stopping converting
Using WINEDEBUG=+d3d the frame rate is very low in the garage, the bug does not
manifests itself.
Configuration:
ATI Radeon HD 3650, fglrx 11.5
DirectDrawRenderer: opengl
UseGLSL: disabled
The game is free to download and play - http://game.worldoftanks.eu/update
--
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=37035
Bug ID: 37035
Summary: Microsoft Office 2010 / 2007: Restore window from tray
is broken if 'Keep window thumbnails' is set to Always
in KDE.
Product: WineHQ Apps Database
Version: unspecified
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: appdb-unknown
Assignee: wine-bugs(a)winehq.org
Reporter: eierfrucht(a)gmail.com
All Microsoft Office 2007 / 2010 applications exhibit this behaviour with Wine
1.7.23 and all previous versions going back to wine 1.4, there also seems to be
no connection to the currently used Distribution, Kernel or KDE version.
1. In KDE System Settings, set 'Keep windows thumbnails' to 'Always (breaks
minimization)'
2. Minimize an Office 2007 / 2010 app window.
3. Try to restore it and all you will get is a tiny square in the left top
corner of the screen.
4. Force showing KWin's native title bar on top of Office 2007 / 2010 windows,
minimizing with KWin's embedded title bar button works without triggering this
issue.
I have observed this behaviour on Arch Linux and Kubuntu since very long ago.
Switching to different Kernel, KDE and Wine versions does not affect it. I know
that 'Keep windows thumbnails' used to break minimization for several apps, but
this option is pretty much vital to KDE's Present Windows function and most
task managers that use window thumbnails. So far, Office 2007 and 2010 are the
only apps suffering from this issue that I'm aware of. I have never witnessed
'Keep windows thumbnails -> Always' breaking any other app.
--
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=32372
Bug #: 32372
Summary: Kerbal Space Program 1.8.1 locks up computer randomly
at various points
Product: Wine
Version: 1.5.18
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: critical
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: greenalien.greenalien(a)gmail.com
Classification: Unclassified
The bug takes place especially when switching back to main menu or pressing
buttons inside the rocket facility. Lockups during flight are less common.
Takes place also with 1.4-raw3 and 1.5.9-raw3 versions of wine.
Due to complete computer lockup, it is impossible to trace this bug in 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=33111
Bug #: 33111
Summary: Graphical Artifacts in Diablo 3 on AMD Graphics
Product: Wine
Version: 1.5.25
Platform: x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: avstaim(a)gmail.com
Classification: Unclassified
There is a number of annoying graphics artifacts in-game, making game
uncomfortable. Artifacts only appear in wine, in Windows 7 graphics is ok,
running the game in proprietary wine clone Crossover Office has no such
artifacts.
My system:
Ubuntu 12.04.2 64 bit
AMD Radeon HD 7600M
Latest Catalist fglrx 13.1
wine 1.5.23-1.5.25 (same bug present) (haven't tried earlier versions as they
are not available to install from PPA)
Tried the following actions (no luck):
1) winetricks ao=enabled
2) running game in windowed fullscreen mode
3) winetricks ddr=gdi
4) Changing fglrx version
5) Adjusting fglrx settings in amdccle
--
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=24926
Summary: Lotro crash
Product: Wine
Version: 1.2
Platform: x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: major
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: jasmin.beauregard(a)gmail.com
Created an attachment (id=31563)
--> (http://bugs.winehq.org/attachment.cgi?id=31563)
Lotro crashlog
The game is just fantastic, no lags and the graphics are quite the same as in
windows but it keeps on crashing after a few minutes of play. Everytime I get
the same error message. Here is my crash log... Hope that it will help.
Thank you!
--
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=32377
Bug #: 32377
Summary: Programs do not load under Wine Loader at all
Product: Wine
Version: unspecified
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: major
Priority: P2
Component: loader
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: thecatisspeaking(a)gmail.com
Classification: Unclassified
Created attachment 42721
--> http://bugs.winehq.org/attachment.cgi?id=42721
A text document containing the bacrtrace information of the error
Windows programs like Starcraft, Starcraft: Brood War and Hoyle Games do not
load. Wine loader attempts to open. Program runs, shows blank black screen,
shows discombobulated lines in black, white and color, then closes with an
error from Wine loader appearing stating that a serious error occurred in the
process and Wine needs to close.
--
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=34092
Bug #: 34092
Summary: Comodo Antivirus for Linux found a malware in wine
Product: Wine
Version: 1.6-rc4
Platform: x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: trivial
Priority: P2
Component: ieframe
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: radubaetica(a)gmail.com
Classification: Unclassified
I have installed Comodo Antivirus for Linux (not via wine) and it keeps telling
me that iexplore.exe installed by wine is a malware called
"Malware@@#3dobwkd9mzh6p".
I reported it as a false-positive several times in a row; I think you should be
informed of this, too.
Possible duplicate of #33440.
--
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=33847
Bug #: 33847
Summary: _NET_FRAME_EXTENTS is set on fullscreen window
Product: Wine
Version: 1.6-rc2
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: winex11.drv
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: rechapita(a)hotmail.com
Classification: Unclassified
Created attachment 44890
--> http://bugs.winehq.org/attachment.cgi?id=44890
outpu for xprop -name Skyrim
Running Skyrim with SKSE the _NET_FRAME_EXTENTS property is set when on
fullscreen.
This means the window informs having decorations even if it is fullscreen
causing glitches on some window compositors such as compton.
Its possible this happens beacuse the Skyrim window starts normal and then it
switches to fullscreen without reseting the _NET_FRAME_EXTENTS property
--
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=36259
Bug ID: 36259
Summary: Teamviewer (via wine) crashes after locking local
Ubuntu 13.10 machine
Product: Wine
Version: unspecified
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: critical
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: michael_matkovic(a)hotmail.com
Created attachment 48387
--> http://bugs.winehq.org/attachment.cgi?id=48387
Backtrace output provided at the time of the crash
I was using Team Viewer v9.0.27891 (which reportedly uses wine v 1.6.1) to
connect to a remote Windows 8.1 machine.
My machine has Ubuntu 13.10 (64bit) installed. I went to lock my machine and
When I came back I found a 'critical error' message which produced the
backtrace (attached with this error report) and subsequently Team Viewer was
shut down.
--
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=31279
Bug #: 31279
Summary: SafeDisc: driver crashes under certain circumstances
Product: Wine
Version: 1.5.9
Platform: x86
OS/Version: Mac OS X
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: ntoskrnl
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: cdavis(a)mymail.mines.edu
Classification: Unclassified
I've been testing various old games on my Mac. Quite a few of them need
SafeDisc protection. Unfortunately, for some reason, the driver, SECDRV.SYS,
keeps crashing under certain circumstances. (Good thing we run drivers in user
mode then... ;) This of course renders any games (that meets these certain
conditions) unplayable without a crack. Trouble is, I'm not sure exactly what
those circumstances are.
Here's what I do know about which games do what:
Age of Empires II: The Age of Kings: driver crashes
Age of Empires II: The Conquerors: driver crashes
Age of Empires II: The Conquerors (with SECDRV from C&C:YR): driver crashes
Age of Empires II: The Age of Kings (with Conquerors installed): driver crashes
Age of Empires II: The Age of Kings (with SECDRV from C&C:YR): driver still
crashes
Command & Conquer 2: Tiberian Sun (with Firestorm expansion): OK
(surprisingly); base C&C2 is probably OK, too
Command & Conquer: Red Alert 2: won't install at all due to #30155
Command & Conquer: Red Alert 2 (with either workaround from #30155): still
won't install because the driver crashes
Command & Conquer: Red Alert 2: Yuri's Revenge: OK (but can't install without
RA2)
It looks like this actually has nothing to do with the actual version of
SafeDisc, but which code paths get hit in the driver. Unfortunately, the driver
is, of course, obfuscated with every trick in the book.
I'll attach a log +tid,+relay,+seh,+services,+winedevice,+ntoskrnl from running
AoE2 in an otherwise-clean prefix.
--
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=25054
Summary: Lost Horizon demo graphic errors
Product: Wine
Version: 1.3.6
Platform: x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: miso.seliga(a)gmail.com
here you can download demoversion i tried:
http://www.gamershell.com/download_62640.shtml
i tried with clean .wine, then i changed desktop to virtual 1280x720, sound
driver to esound and disabled links to home folder
game installs well (only after installation wine desktop windows remains on
screen and has to be closed manually with window close button. this is so minor
problem that i don't report it)
then i run game's configtool, don't change anything, press save
then i run game, intro video plays and menu appears. in menu there are already
visible mistakes, it looks as if some overlay should be rendered on top and its
only random noise, screenshot is attached. same problem can be seen later in
game too. i noticed that everytime i run the game itlooks different, even when
you run the game and return to menu it looks different. sometimes there is
noise over whole screen, sometimes there is only black box on bottom-right part
of screen
there are no relevant messages in console
log with WINEDEBUG=trace+graphics is also empty
log with WINEDEBUG=trace+graphics,+relay is huge (363MB) so i am not attaching
it yet, i am afraid that because there is no crash even if there is something
useful it may be buried anywhere in it... so i will post needed information
when someone will write me what exactly is needed
in appdb there is no demoversion but there is entry for full game here:
http://appdb.winehq.org/objectManager.php?sClass=version&iId=21194&iTesting…
i can't confirm if there is problem in full version too
my system is ubuntu 10.10 64bit
wine is wine-1.3.6 from winehq repository
graphic card is ati 4850
graphic driver is fglrx from ubuntu 10.10 repository
(8.78-3-100920a-105558c-ATI)
if therewill be need for some more information then let me know
--
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=24490
Summary: pSX emulator does not receive input from Option (Alt)
key.
Product: Wine
Version: 1.3.3
Platform: x86-64
OS/Version: Mac OS X 10.6
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: LordHDL(a)yahoo.com
Created an attachment (id=30905)
--> (http://bugs.winehq.org/attachment.cgi?id=30905)
pSX Output
The Option key on an Apple keyboard also serves as the "Alt" function for
Windows applications. Other applications I've tested recognize it normally,
but pSX does not. It is required for invoking full screen mode. You can also
assign it to a misc. key command in the application's configuration, but all it
does is scroll through the text fields. Nothing appears in the log when trying
to use this key, but I attached it anyway.
--
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=37041
Bug ID: 37041
Summary: Trackmania Nations Forever crashes on startup
(Regression?)
Product: Wine
Version: 1.7.23
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: maiktapwagner(a)aol.com
Created attachment 49220
--> http://bugs.winehq.org/attachment.cgi?id=49220
Backtrace on wine 1.7.23 openSUSE Factory Rolling Release
Hello everyone,
I noticed that a previous bug 18989 has already been fixed but I am still
having problems to get the game to run in wine 1.7.23. I got the game from the
following URL:
http://www.chip.de/downloads/TrackMania-Nations-Forever_31482232.html
--
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=28646
Bug #: 28646
Summary: Statusbar icons have black backgrounds
Product: Wine
Version: 1.3.29
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: support(a)securenetterm.com
Classification: Unclassified
Starting in release 1.3.29, the transparent backgrounds of icons contained in a
statusbar have black backgrounds. In addition, if you hover the mouse over the
statusbar gripper located on the window lower right side, a 1/2 inch black
square will appear. This can be tested using the Codejock (www.codejock.com)
Statusbar.exe demo program.
--
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=35085
Bug #: 35085
Summary: Tomb raider chronicles
Product: Wine
Version: 1.7.8
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: legluondunet(a)free.fr
Classification: Unclassified
Created attachment 46802
--> http://bugs.winehq.org/attachment.cgi?id=46802
TB5 wine crash log
Hello,
Tomb Raider 5 Chronicles crash at start.
Crash log joined.
Thank you for your help.
LGDN.
--
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=35531
Bug ID: 35531
Summary: FFXIV Crashed while only running around.
Product: Wine
Version: unspecified
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: major
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: keithcorum(a)gmail.com
Classification: Unclassified
Created attachment 47445
--> http://bugs.winehq.org/attachment.cgi?id=47445
the backtrace file given my the crash report.
I have FFxiv running with no flickering by using advice from the winehq forums
and Codewavers forums. However after about 15 min of running around the game
crashed on me. The rest of the game seems to be running fine though I have not
put it through any real strain.
--
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=28250
Summary: Strange polygon in Wine 1.3.27 but not in Wine 1.3.0
Product: Wine
Version: 1.3.27
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: dalanmao89(a)gmail.com
I played the game PAL4 (仙剑奇侠传4. See http://chinesepaladin.org/tag/pal4 and
http://www.gamersky.com/Soft/200708/9540.shtml for description of the game)
under Wine 1.3.27 and Wine 1.3.0 and I discovered the following problem:
1. My laptop is Intel i915 graphic card with intel-dri 7.11-2 and
xf86-video-intel 2.15.0-2 driver. I have tried playing the game with NVideo
driver and Wine 1.3.27 has no strange polygon problem. So I suspect the bug is
Intel i915 graphic card related!
2. Under Wine 1.3.0, there is no strange polygon display problem. See
wine-1.3.0.png in the wine-bug-report.7z. The log file is attached as
wine-bug-report.cmp in the 7zip archive.
3. Under Wine 1.3.27 (even earlier versions such as 1.3.23 if I am not
mistaken), strange polygon display problem occur. See wine-1.3.27a.png (S3TC
disable) and wine-1.3.27b.png (S3TC enable with driconf) in the
wine-bug-report.7z. The log file is attached as wine-bug-report.log in the
7zip archive.
Details about my laptop:
1. Running the software:
cd ~/.wine/drive_c/SoftStar/PAL4
LC_ALL=zh_CN.GBK wine PAL4.exe -opengl
2. My distro is ArchLinux 32 bit and 64 bit:
Linux mylinux 3.0-ARCH #1 SMP PREEMPT Tue Aug 30 07:32:23 UTC 2011 i686
Intel(R) Core(TM) i5 CPU M 430 @ 2.27GHz GenuineIntel GNU/Linux
3. The gcc version is
Using built-in specs.
COLLECT_GCC=gcc
COLLECT_LTO_WRAPPER=/usr/lib/gcc/i686-pc-linux-gnu/4.6.1/lto-wrapper
Target: i686-pc-linux-gnu
Configured with: /build/src/gcc-4.6-20110819/configure --prefix=/usr
--libdir=/usr/lib --libexecdir=/usr/lib --mandir=/usr/share/man
--infodir=/usr/share/info --with-bugurl=https://bugs.archlinux.org/
--enable-languages=c,c++,ada,fortran,go,lto,objc,obj-c++ --enable-shared
--enable-threads=posix --with-system-zlib --enable-__cxa_atexit
--disable-libunwind-exceptions --enable-clocale=gnu --enable-gnu-unique-object
--enable-linker-build-id --with-ppl --enable-cloog-backend=isl --enable-lto
--enable-gold --enable-ld=default --enable-plugin --with-plugin-ld=ld.gold
--disable-multilib --disable-libssp --disable-libstdcxx-pch
--enable-checking=release
Thread model: posix
gcc version 4.6.1 20110819 (prerelease) (GCC)
--
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=23777
Summary: Half-Life in full screen will be partially drawn
Product: Wine
Version: 1.2
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: axel(a)james-b.ch
Created an attachment (id=29807)
--> (http://bugs.winehq.org/attachment.cgi?id=29807)
After a restore, Counter-Strike is not drawn completly
I've found that wine won't draw correctly Half-Life games (mods too), which are
in OpenGL, after an alt-tab (minimize). It has begun after a kernel,
nvidia-drivers and Xorg update.
When any HL game is started all is fine. After the first alt-tab the game
"window" is cut (see the attachments). It happens even when the game has the
same resolution as my screen and when I do ctrl+alt+arrows (change the current
desktop) since it minimizes the game. I have tested with a old Half-Life
(without Steam) and the bug is reproduced too.
I'm using Gentoo Linux, kernel 2.6.32-gentoo-r7 (before 2.6.32-r3),
nvidia-drivers-256.35 (and 195.36.24 was tested too) (Asus 285 GTX),
xorg-server-1.7.6 (before: 1.6.5-r1).
Other attachments: game effects are affected as well resulting in possible
cheat exploits. Notice that these are windows captures (alt-printscreen).
>> http://img822.imageshack.us/i/capturecounterstrike1.jpg/ (sniper scopes aren't drawn at the good position)
>> http://img9.imageshack.us/i/capturecounterstrike2.jpg/ (flash grenade doesn't produce the effect in fullscreen, seems shifted by the bug)
--
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=33632
Bug #: 33632
Summary: Wine changes video mode to one with "panning"
(probably on Nvidia cards only)
Product: Wine
Version: 1.5.30
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: major
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: otaku(a)rambler.ru
Classification: Unclassified
When Wine app changes screen resolution to any less than display's native one
You can use mouse to pan outward app's screen and see Your desktop and other
apps. It especially annoys if app uses small resolution (640x480 or less)
Even if screen is panned the only part of X screen that works (redraws and
feels mouse) is the screenspace of the app even if it already crashed or closed
and forgot to return display's native resolution.
At least three apps are affected:
- Duke Nukem Manhattan Project
- Virtuelle Moorhuhn Jagd
- https://code.google.com/p/boxplorer2/ when in fullscreen
so setting Severity to "Major". Probably any app with small screen resolution
is affected.
I know no native linux app besides Wine that behaves this way.
Tested on Xubuntu 12.04 to 13.04 with Geforces GT 220 and 630 and any graphics
drivers of versions 3xx.xx
--
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=35087
Bug #: 35087
Summary: Tomb raider 4 The last revelation - crash at start -
steam version
Product: Wine
Version: 1.7.8
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: legluondunet(a)free.fr
Classification: Unclassified
Created attachment 46804
--> http://bugs.winehq.org/attachment.cgi?id=46804
TB4 wine crash log
Hello,
Tomb raider 4 The last revelation, steam version, crashes at start.
I joined you the debug wine report.
Thank you for your help.
LGDN.
--
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=35089
Bug #: 35089
Summary: TERA Online crashes with recent update
Product: Wine
Version: unspecified
Platform: x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: papon.jonathan(a)laposte.net
Classification: Unclassified
Step to reproduce :
-Install TERA Online (gameforge version) within a clean prefix
-Enter your login information and press the "login" button
-The launcher immediately segfault without prior information
Tried with wine version from 1.7.1 to 1.7.8 : same result.
Distrib : Archlinux x86_64
Reverting linux kernel from 3.12.2-1 to 3.11.6-1 (and nvidia proprietary driver
from 331.20-1 to 325.15-1; as newer version doesn't work with older kernel)
resolved the issue.
--
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=34761
Bug #: 34761
Summary: Neverwinter Online: System lockup using fglrx drivers
while loading
Product: Wine
Version: 1.7.0
Platform: x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: major
Priority: P2
Component: directx-d3d
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: DennisJohansen(a)GMail.com
Classification: Unclassified
After logging in with the Neverwinter Online launcher, it starts to load the
actual game. But locks up the entire system along the way. Last message shown
in the game is "Materials reloaded".
Doing some regression testing points to this particular commit:
commit 37d1e8b79cfc2c4ca7b947589574179470a06c42
Author: Henri Verbeet <hverbeet(a)codeweavers.com>
Date: Fri Aug 16 09:12:30 2013 +0200
wined3d: Try to avoid redundant constant updates.
This gives a minor performance improvement. For example, in 3DMark03 Game
Test
1 this gives about a 4% improvement, in the Counter Strike: Source stress
test
it's about 1%. (NVIDIA GF9600M, Intel T9550, 1024x768).
--
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=31864
Bug #: 31864
Summary: Battlestrike The Siege crahes
Product: Wine
Version: 1.5.14
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: zelotech(a)yahoo.de
Classification: Unclassified
The DirectX9 game Battlestrike The Siege crashes.
--
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=39049
Bug ID: 39049
Summary: Built-in IE crashes while opening a particular URL
Product: Wine
Version: 1.7.48
Hardware: x86
URL: https://support.office.com/article/486c12c9-dcce-489c-
b970-3abb37c8451f?CTT=6&Origin=EC010229861033
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: mshtml
Assignee: wine-bugs(a)winehq.org
Reporter: t.artem(a)mailcity.com
Distribution: ---
Created attachment 52017
--> https://bugs.winehq.org/attachment.cgi?id=52017
Backtrace
ath.c:193: _gcry_ath_mutex_lock: Assertion `*lock == ((ath_mutex_t) 0)' failed.
wine: Assertion failed at address 0xb77fac90 (thread 004a), starting
debugger...
ath.c:193: _gcry_ath_mutex_lock: Assertion `*lock == ((ath_mutex_t) 0)' failed.
--
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=30517
Bug #: 30517
Summary: MS Office 2007 applications are always on all
activities in KDE, they don't have option to select
activity
Product: Wine
Version: 1.5.2
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: katonag(a)gmail.com
Classification: Unclassified
KDE 4 has a feature set called activities. Activities are different from
virtual desktops, as they provide separate workspaces for separate workflows.
Additionally the possibility for virtual desktops are also present.
MS Office 2007 applications (Word, Excel, Powerpoint tested) somehow break this
feature, and they always appear on all activities, whereas they honor the
virtual desktops. Normally all windows have the option to select which virtual
desktop and which activity they should appear on, but MSO 2007 apps lack the
setting for choosing the activity because of the unusual titlebar*. This
wouldn't be a serious problem, if they wouldn't appear on all activities by
default. Normal apps (even windows apps) appear on the activity they are
started from by default.
Steps to reproduce:
1. Setup KDE to have at least 2 activities.
2. Start e.g. Word2007 on one activity, and also start some other apps (windows
or native Linux, normally doesn't matter)
3. Change activity. Now the second app is not visible, because it remained in
activity1, but Word 2007 is still visible.
4. Go back to activity1.
* A related (but not same) bug has been filed to KDE Bugtracking system:
https://bugs.kde.org/show_bug.cgi?id=298805
--
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=39226
Bug ID: 39226
Summary: wine1.7 in the PPA for 14.04 (Trusty) pulls wrong
versions of wine-mono and wine-gecko as dependencies
Product: Wine
Version: 1.7.50
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: minor
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: imz(a)altlinux.org
Distribution: ---
Background: The version which comes with the official Ubuntu Trusty
repositories (wine-1.6.2) is not suitable for me. I need wine1.7. First, I
upgraded the whole system to 14.04 (Trusty).
How to reproduce and what is unexpected:
Then, to use the wine package from PPA in 14.04 (Trusty):
# apt-get purge 'wine.*'
# apt-add-repository ppa:ubuntu-wine/ppa
# apt-get update
# apt-get install wine1.7
Surprizingly, although `apt-get install wine1.7` did install a version of
`wine-mono` and `wine-gecko` as dependencies, they didn't match the
requirements of the `wine` package, as brought to light by the warnings when
`winecfg` was run; and I had to apt-get-install manually other (newer) versions
of these packages.
Details:
# apt-get install wine1.7
Reading package lists... Done
Building dependency tree
Reading state information... Done
The following extra packages will be installed:
wine-gecko2.34 wine-mono4.5.4 wine1.7-i386 winetricks
Suggested packages:
dosbox:any
Recommended packages:
wine1.5-i386 wine
The following NEW packages will be installed:
wine-gecko2.34 wine-mono4.5.4 wine1.7 wine1.7-i386 winetricks
0 upgraded, 5 newly installed, 0 to remove and 0 not upgraded.
Need to get 0 B/101 MB of archives.
After this operation, 233 MB of additional disk space will be used.
Do you want to continue? [Y/n]
Selecting previously unselected package wine-gecko2.34:i386.
(Reading database ... 210866 files and directories currently installed.)
Preparing to unpack .../wine-gecko2.34_2.34-0ubuntu1~ppa1_i386.deb ...
Unpacking wine-gecko2.34:i386 (2.34-0ubuntu1~ppa1) ...
Selecting previously unselected package wine-mono4.5.4.
Preparing to unpack .../wine-mono4.5.4_4.5.4-0ubuntu1~ppa1_all.deb ...
Unpacking wine-mono4.5.4 (4.5.4-0ubuntu1~ppa1) ...
Selecting previously unselected package wine1.7-i386.
Preparing to unpack .../wine1.7-i386_1%3a1.7.50-0ubuntu1_i386.deb ...
Unpacking wine1.7-i386 (1:1.7.50-0ubuntu1) ...
Selecting previously unselected package wine1.7.
Preparing to unpack .../wine1.7_1%3a1.7.50-0ubuntu1_i386.deb ...
Unpacking wine1.7 (1:1.7.50-0ubuntu1) ...
Selecting previously unselected package winetricks.
Preparing to unpack .../winetricks_0.0+20140302-0ubuntu2_all.deb ...
Unpacking winetricks (0.0+20140302-0ubuntu2) ...
Processing triggers for hicolor-icon-theme (0.13-1) ...
Processing triggers for man-db (2.6.7.1-1ubuntu1) ...
Processing triggers for bamfdaemon (0.5.1+14.04.20140409-0ubuntu1) ...
Rebuilding /usr/share/applications/bamf-2.index...
Processing triggers for desktop-file-utils (0.22-1ubuntu1) ...
Processing triggers for mime-support (3.54ubuntu1.1) ...
Processing triggers for gnome-menus (3.10.1-0ubuntu2) ...
Setting up wine-gecko2.34:i386 (2.34-0ubuntu1~ppa1) ...
Setting up wine-mono4.5.4 (4.5.4-0ubuntu1~ppa1) ...
Setting up winetricks (0.0+20140302-0ubuntu2) ...
Setting up wine1.7-i386 (1:1.7.50-0ubuntu1) ...
Setting up wine1.7 (1:1.7.50-0ubuntu1) ...
Processing triggers for libc-bin (2.19-0ubuntu6.6) ...
#
wine-mono and wine-gecko do not match wine:
$ rm -rf .wine/
$ winecfg
wine: created the configuration directory '/home/marsmorgana/.wine'
err:ole:marshal_object couldn't get IPSFactory buffer for interface
{00000131-0000-0000-c000-000000000046}
err:ole:marshal_object couldn't get IPSFactory buffer for interface
{6d5140c1-7436-11ce-8034-00aa006009fa}
err:ole:StdMarshalImpl_MarshalInterface Failed to create ifstub,
hres=0x80040155
err:ole:CoMarshalInterface Failed to marshal the interface
{6d5140c1-7436-11ce-8034-00aa006009fa}, 80040155
err:ole:get_local_server_stream Failed: 80040155
err:ole:marshal_object couldn't get IPSFactory buffer for interface
{00000131-0000-0000-c000-000000000046}
err:ole:marshal_object couldn't get IPSFactory buffer for interface
{6d5140c1-7436-11ce-8034-00aa006009fa}
err:ole:StdMarshalImpl_MarshalInterface Failed to create ifstub,
hres=0x80040155
err:ole:CoMarshalInterface Failed to marshal the interface
{6d5140c1-7436-11ce-8034-00aa006009fa}, 80040155
err:ole:get_local_server_stream Failed: 80040155
Could not load wine-gecko. HTML rendering will be disabled.
wine: configuration in '/home/marsmorgana/.wine' has been updated.
$
What I have to do to fix this problem:
# apt-get install wine-mono4.5.6 wine-gecko2.40
Reading package lists... Done
Building dependency tree
Reading state information... Done
The following NEW packages will be installed:
wine-gecko2.40 wine-mono4.5.6
0 upgraded, 2 newly installed, 0 to remove and 0 not upgraded.
Need to get 0 B/84.8 MB of archives.
After this operation, 85.5 MB of additional disk space will be used.
Selecting previously unselected package wine-gecko2.40:i386.
(Reading database ... 212582 files and directories currently installed.)
Preparing to unpack .../wine-gecko2.40_2.40-0ubuntu1_i386.deb ...
Unpacking wine-gecko2.40:i386 (2.40-0ubuntu1) ...
Selecting previously unselected package wine-mono4.5.6.
Preparing to unpack .../wine-mono4.5.6_4.5.6-0ubuntu1~ppa1_all.deb ...
Unpacking wine-mono4.5.6 (4.5.6-0ubuntu1~ppa1) ...
Setting up wine-gecko2.40:i386 (2.40-0ubuntu1) ...
Setting up wine-mono4.5.6 (4.5.6-0ubuntu1~ppa1) ...
#
--
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=31404
Bug #: 31404
Summary: Was able to play the game before reinstalling Fedora
17
Product: Wine
Version: unspecified
Platform: x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: critical
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: for_what_its_worth(a)hotmail.com
Classification: Unclassified
Created attachment 41272
--> http://bugs.winehq.org/attachment.cgi?id=41272
Unhandled exception: page fault. back trace file
Hoyle card games 2005 crashes on startup
--
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=25896
Summary: Din's Curse Demo is rendered incorrectly
Product: Wine
Version: 1.3.12
Platform: x86
URL: http://www.soldak.com/
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: igor-hkr(a)mail.ru
Created an attachment (id=33003)
--> (http://bugs.winehq.org/attachment.cgi?id=33003)
menu
All games from Soldak entertainment(they have the same engine) are rendered
incorrectly(in both menu and game itself)
Tested with Din's Curse Demo and Kivi's Underworld
First one is present in AppDB with comment:
"What does not work
various graphical glitches: character models is messed up, to fix use low
graphics settings. various effects and icons are displayed wrongly." but no
screenshot attached
Changing settings doesn't help for me.
Made some screenshots
--
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=33460
Bug #: 33460
Summary: Mouse gets suck and won't allow rotation in Fable 3
Product: Wine
Version: 1.5.25
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: directx-dinput
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: inuyasha(a)usa.com
Classification: Unclassified
The mouse gets stuck when on the edges of the screen when trying to look
around.
In the log I see
warn:cursor:grab_clipping_window XInput2 not supported, refusing to clip to
(0,0)-(1280,1024)
I have tried a rawinput patched wine with the same results.
--
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=27879
Summary: Zombie Driver becomes unresponsive mid-game with
shadows enabled
Product: Wine
Version: 1.3.25
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: directx-d3d
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: gyebro69(a)gmail.com
CC: miegalius(a)gmail.com
Created an attachment (id=35669)
--> (http://bugs.winehq.org/attachment.cgi?id=35669)
terminal output
In Wine-1.3.25 Zombie Driver stalls in a matter of seconds after a new game was
started.
Symptom: sound begins to stutter and framerate drops dramatically in a couple
of seconds mid-game, the game hardly responses to keypresses. The game doesn't
turn into "zombie" completely, if I press <Esc> several times I'm able to go
back to the menus where the framerate and mouse responsiveness are okay. As
soon as I resume the game, the issue is there again.
Workaround: disable shadows (in the launcher). The game offers 3 choices for
shadows: none, normal, soft.
I can reproduce the problem with the following game versions: 1.1.2, 1.1.4,
1.2.2, 1.2.6
The demo, still at version 1.0.6 is not affected.
Regression testing pointed to:
6c5e109af7184ee557aa24c676cc78f3e92e6782 is the first bad commit
commit 6c5e109af7184ee557aa24c676cc78f3e92e6782
Author: Ričardas Barkauskas <rbarkauskas(a)codeweavers.com>
Date: Fri Jul 8 22:11:29 2011 +0300
wined3d: Introduce quirk for proper RGBA16 support.
:040000 040000 1fc08fe5e9148a2a9699c6c6edb6c042192a5072
4e9e3555ccd4a5892a60c2a4aff1d28ea2229a9e M dlls
The patch can be reverted cleanly on 1.3.25 and that fixed the problem.
Author of the patch added to CC.
I'd like to add that this was the commit that fixed a long-standing graphical
problem in the game: dark, diagonal lines appeared across the screen when
shadows was enabled.
Fedora 15
Nvidia GeForce 250 / driver 275.21
--
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=34861
Bug #: 34861
Summary: Resident Evil 3: multiple graphical glitches (Mac OS X
only bug)
Product: Wine
Version: 1.7.5
Platform: x86
OS/Version: Mac OS X
Status: UNCONFIRMED
Severity: minor
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: winebugs140(a)gmail.com
Classification: Unclassified
Created attachment 46463
--> http://bugs.winehq.org/attachment.cgi?id=46463
Resident Evil 3
I've attatched screenshots to illustrate these problems. The bug seems to be
GPU
independent.
On Ubuntu everything looks fine.
The problem can be reproduced in the demo (check out the link).
Tested with:
Mac OS X 10.7 and 10.9, ATI HD 2600 Pro, ATI HD 6970M, Geforce 320M, Mac
Driver/X11
--
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=33677
Bug #: 33677
Summary: iTunes 10.6.3 Installs ok, fails to run afterwards.
Product: Wine
Version: 1.5.30
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: alenzo(a)yahoo.com
Classification: Unclassified
Created attachment 44581
--> http://bugs.winehq.org/attachment.cgi?id=44581
log from running iTunes 10.6.3 for first time.
Install of iTunes 10.6.3 went successful on WINE 1.5.30 version. When starting
up the program for the first time, and any other time I get register & stack
dump.
See attach log file for more info.
--
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=33388
Bug #: 33388
Summary: Aion "Kraka's Den" quest: game crash, can not complete
the quest
Product: Wine
Version: 1.5.28
Platform: x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: legluondunet(a)free.fr
Classification: Unclassified
Hello,
big bug with AION, you can not complete the "Kraka's Den" quest because the
game crash each time you put the mouse cursor on the "magic gate".
I tried different version of wine and different option without success, please
help!
I joined you a screen of the gate (completely glitched)
You can compare it to the pictures ont this web page:
http://aion.zam.com/wiki/Kraka%27s_Den_%28Aion_Place%29
hank you for your help.
--
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=35462
Bug ID: 35462
Summary: Sphere 1.6: Crash on startup using FJ-GL plugin
Product: Wine
Version: 1.7.11
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: opengl
Assignee: wine-bugs(a)winehq.org
Reporter: foolkingcrown(a)gmail.com
Classification: Unclassified
The Sphere 1.6 FJ-GL graphics plugin crashes in Wine with the following errors:
libGL: OpenDriver: trying /usr/lib32/xorg/modules/dri/tls/r600_dri.so
libGL: OpenDriver: trying /usr/lib32/xorg/modules/dri/r600_dri.so
libGL: driver does not expose __driDriverGetExtensions_r600():
/usr/lib32/xorg/modules/dri/r600_dri.so: undefined symbol:
__driDriverGetExtensions_r600
err:wgl:glxdrv_wglSetPixelFormat Invalid iPixelFormat: 0
After which, it seems that no GL context is available.
Sphere 1.6 is available here:
http://rpgmaker.net/users/FlyingJester/locker/sphere16fj.zip
Using the Sphere_GL driver does not crash, despite requesting the same pixel
format, and getting the same 'errors' about r600_dri.
--
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=30800
Bug #: 30800
Summary: SBK X freezes while loading the menu screen
Product: Wine
Version: 1.3.25
Platform: x86
URL: http://www.chip.de/downloads/SBK-X-Superbike-World-Cha
mpionship-Demo_36594100.html
OS/Version: Linux
Status: NEW
Keywords: download, regression
Severity: normal
Priority: P2
Component: directx-d3d
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: gyebro69(a)gmail.com
CC: miegalius(a)gmail.com
Classification: Unclassified
Regression SHA1: 6c5e109af7184ee557aa24c676cc78f3e92e6782
Created attachment 40338
--> http://bugs.winehq.org/attachment.cgi?id=40338
terminal output
SBK X is a motorcycle racing game. After starting the game through Launcher.exe
and skipping the videos which don't play in Wine, the game becomes unresponsive
at some point while loading to the menu screen. The animated loading icon stops
spinning and the game halts. Launcher.exe is consuming 100% CPU time, but
nothing happens.
Shortly after freezing, this message appears in the terminal:
>err:ntdll:RtlpWaitForCriticalSection section 0x7ea53fc0 "wined3d_main.c: wined3d_cs" wait timed out in thread 0036, blocked by 0009, retrying (60 sec)
The problem appeared in Wine 1.3.25 and is still present in 1.5.5.
The result of the regression test:
6c5e109af7184ee557aa24c676cc78f3e92e6782 is the first bad commit
commit 6c5e109af7184ee557aa24c676cc78f3e92e6782
Author: Ričardas Barkauskas <rbarkauskas(a)codeweavers.com>
Date: Fri Jul 8 22:11:29 2011 +0300
wined3d: Introduce quirk for proper RGBA16 support.
:040000 040000 1fc08fe5e9148a2a9699c6c6edb6c042192a5072
4e9e3555ccd4a5892a60c2a4aff1d28ea2229a9e M dlls
At first I thought it was a dupe of bug #27879. However, Henri's patch
(attachment #38991) does not fix the problem in SBK X.
The problem can be reproduced with the demo version as well (download size: 770
MB).
Steps to reproduce the problem with the demo:
1. Install the demo as usual. Choose default installation and install Directx
components as well. If you skip DX installation, you have to manually install
the following components via winetricks: xact_jun2010 d3dx9_36.
2. Start the game with Launcher.exe. Click on <Play> in the launcher.
3. Intro videos give only black screens, you need to press <Space> 3-4 times to
skip the videos.
4. Press <Enter> when the first screen appears. The game begins to load to the
menu but loading never finishes -> the game is freezing at this point.
Fedora 16 x86
Nvidia 250 / driver 295.53
X.Org X Server 1.11.4
--
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=35264
Bug ID: 35264
Summary: League of Legends: Security warning There is a problem
with the certificate of this site
Product: Wine
Version: 1.6
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: szabolcs.feczak(a)gmail.com
Classification: Unclassified
if the below is not fixed at least it should be included in the installation
guide http://appdb.winehq.org/objectManager.php?sClass=version&iId=19141
Starting the League of Legends client throws
There is a problem with the certificate of this site. Do you want to continue
anyway?
This is displayed two times in a sequence.
This is displayed whenever you login or access any pages of the store
or the character information pages.
This is an Internet explorer certificate related issue.
Currently can be resolved by:
1. Download the intermediate certificate
https://www.digicert.com/digicert-root-certificates.htm
'DigiCert High Assurance CA-3'
2. type: 'wine control' in a linux terminal
3. click 'Internet options'
4. Click 'Content' tab
5. Click 'Certificates'
6. Follow the import wizard and select the downloaded file,
select 'Automatically select certificate store'
7. confirm that the certificate is imported into the list
8. Close everything, restart your LoL client and be happy without the annoying
messages at every second click
--
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=31736
Bug #: 31736
Summary: Minimized windows are not shown in gnome-shell
activity windows list
Product: Wine
Version: 1.5.13
Platform: x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: lviggiani(a)gmail.com
Classification: Unclassified
This "bug" happens to me with gnome-shell 3.4 (and before) on Ubuntu 12.04 x64
both on wine 1.4.x and wine 1.5.x.
Compatibility set to WinXP.
Application Office 2010.
Steps to reproduce.
1) Open either Word or Excel
2) Maximize the window
3) Minimize the window
4) Select Gnome-Shell Activity (or hit the top-left corner or press super key)
5) The window list (with previews) is show but the word/excel preview is empty
and it just show the window title on bottom (problem #1)
6) Click on the empty area anyway
Word or Excel windows are restored but they are not actually maximized. Their
size is smaller than before (problem #2). The window anyway behaves as it is
actually maximized. In fact it has the restore button. If you click it twice
the window if finally maximized again.
--
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=35088
Bug #: 35088
Summary: Tomb Raider Underworld
Product: Wine
Version: 1.7.8
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: legluondunet(a)free.fr
Classification: Unclassified
Hello,
I just tested Tomb Raider Underworld on Steam: this game runs very good with
wine 1.7.8, except one BIG bug: Lara is all brown (screenshots joined) and
there is a lot of D3D errors in wine log.
Thank you for your help.
LGDN.
--
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=31282
Bug #: 31282
Summary: Unable to Run Guild Wars 2; probably dbus issue
Product: Wine
Version: unspecified
Platform: x86
OS/Version: Mac OS X
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: marius.olbertz(a)gmail.com
Classification: Unclassified
When I run Guildwars 2 , the following message is shown. I already tried to fix
the problem as discribed here http://trac.macports.org/ticket/20645. However,
Guildwars 2 does start normally.
noname:GW2 Manno$ wine Gw2.exe
Dynamic session lookup supported but failed: launchd did not provide a socket
path, verify that org.freedesktop.dbus-session.plist is loaded!
err:winediag:SECUR32_initNTLMSP ntlm_auth was not found or is outdated. Make
sure that ntlm_auth >= 3.0.25 is in your path. Usually, you can find it in the
winbind package of your distribution.
But after logging in and confirmung the EULA, the client closes itself. I guess
it's supposed to start the game afterwards, but nothing happens at all.
fixme:heap:HeapSetInformation 0x1d66000 0 0x32fdd8 4
fixme:process:SetProcessDEPPolicy (1): stub
fixme:process:GetLogicalProcessorInformation (0x32f2d4,0x32f900): stub
fixme:process:GetLogicalProcessorInformation (0x0,0x3337e98c): stub
fixme:process:GetLogicalProcessorInformation (0x3337e9b4,0x3337e98c): stub
fixme:process:GetLogicalProcessorInformation (0x0,0x3337e994): stub
fixme:process:GetLogicalProcessorInformation (0x3337e9bc,0x3337e994): stub
fixme:process:GetLogicalProcessorInformation (0x0,0x3337e988): stub
fixme:process:GetLogicalProcessorInformation (0x3337e9b0,0x3337e988): stub
fixme:winsock:WS_getsockopt WS_SO_CONNECT_TIME - faking results
fixme:win:EnumDisplayDevicesW ((null),0,0x3337addc,0x00000000), stub!
fixme:imm:ImmDisableTextFrameService Stub
fixme:wtsapi:WTSRegisterSessionNotification Stub 0x20062 0x00000000
fixme:win:RegisterRawInputDevices (pRawInputDevices=0x3337b050, uiNumDevices=1,
cbSize=12) stub!
fixme:d3d:resource_check_usage Unhandled usage flags 0x8.
fixme:d3d:resource_check_usage Unhandled usage flags 0x8.
fixme:d3d:resource_check_usage Unhandled usage flags 0x8.
fixme:d3d:resource_check_usage Unhandled usage flags 0x8.
fixme:avrt:AvSetMmThreadCharacteristicsW (L"Audio",0x3563f638): stub
fixme:win:EnumDisplayDevicesW ((null),0,0x3337e77c,0x00000000), stub!
fixme:win:EnumDisplayDevicesW ((null),0,0x3337eabc,0x00000000), stub!
fixme:d3d:state_zfunc D3DCMP_NOTEQUAL and D3DCMP_EQUAL do not work correctly
yet.
fixme:d3d:resource_check_usage Unhandled usage flags 0x8.
fixme:d3d:resource_check_usage Unhandled usage flags 0x8.
fixme:win:EnumDisplayDevicesW ((null),0,0x3337eecc,0x00000000), stub!
fixme:imm:ImmDisableTextFrameService Stub
fixme:wtsapi:WTSRegisterSessionNotification Stub 0x30064 0x00000000
fixme:win:RegisterRawInputDevices (pRawInputDevices=0x3337f13c, uiNumDevices=1,
cbSize=12) stub!
xp_destroy_surface: assertion failed: s != NULL
xp_destroy_surface error: 3
X Error of failed request: 0
Major opcode of failed request: 149 (GLX)
Minor opcode of failed request: 26 (X_GLXMakeContextCurrent)
Serial number of failed request: 11307
Current serial number in output stream: 11307
--
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=29569
Bug #: 29569
Summary: mingw make complains "cp: cannot stat
`d3dcompiler_43/libd3dcompiler.a': No such file or
directory"
Product: Wine
Version: 1.3.36
Platform: x86
OS/Version: Windows
Status: NEW
Severity: minor
Priority: P2
Component: build-env
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: dank(a)kegel.com
Classification: Unclassified
Configuring wine on mingw per the wiki seems to go fine, but 'make' fails with
rm -f dlls/libd3dcompiler.a && cp -p d3dcompiler_43/libd3dcompiler.a
dlls/libd3d
compiler.a
cp: cannot stat `d3dcompiler_43/libd3dcompiler.a': No such file or directory
There are four problems of this sort in Makefile. Doing
sed -i 's,$(LN_S) ,$(LN_S)/dlls' Makefile
seems to rescue it, and let it get further.
That LN_S comes from function wine_fn_config_dll(), line 414 of aclocal.m4.
There's another one that looks like it needs fixing at line 422, too.
See http://wiki.winehq.org/WineOnWindows and/or
http://kegel.com/wine/wow.html for notes on how to reproduce.
(I had to do
cd dlls/libwine0; make; cd ../..
cd dlls/d3dcompiler_43; make; cd ../..
to get this far, but maybe that was operator error, not sure.)
--
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=24349
Summary: Blackberry Desktop Software (aka Device Manager):
Crashes on Run
Product: Wine
Version: 1.2
Platform: x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: andrew.in.snow(a)gmail.com
Created an attachment (id=30691)
--> (http://bugs.winehq.org/attachment.cgi?id=30691)
Command line output and backtrace
Desktop Manager does not run.
Installation requires the Windows version to be set to "Windows XP" and no
other modifications are needed.
Application crashes during startup.
OS: Fedora 13
Please note that while I put x86_64 as my hardware, I installed the i686
version of wine from Fedora.
Please let me know what else I can provide.
--
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=30410
Bug #: 30410
Summary: Starcraft 2 crashes on login in Ubuntu 12.04
(regression from Ubuntu 11.10)
Product: Wine
Version: 1.5.1
Platform: x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: danielreiterhorn(a)gmail.com
Classification: Unclassified
Created attachment 39753
--> http://bugs.winehq.org/attachment.cgi?id=39753
The output of wine
Description: Ubuntu precise (development branch)
Release: 12.04
Linux 3.2.0-22-generic #35-Ubuntu SMP Tue Apr 3 18:33:15 UTC 2012 x86_64 x86_64
x86_64 GNU/Linux
wine-1.5.1
In previous version of ubuntu, wine-1.4 works with StarCraft II and the same
version of wine (and all other versions of wine) fail with starcraft on nvidia
drivers. Dozens of versions of nvidia drivers and 3 versions of wine including
1.5.1 and top of tree 31f6f48bfd7a82d7229cdd7dff812272c27ae812 were also tested
with the same regression on Ubuntu 12.04 that all worked on Ubuntu 11.10
Other users are experiencing the bug and reporting it
http://www.codeweavers.com/support/tickets/browse/?ticket_id=883964;list=6;…http://ubuntuforums.org/archive/index.php/t-1939902.htmlhttp://ubuntuforums.org/showthread.php?t=1939902
It could be a kernel issue.
After successfully testing Starcraft on my Ubuntu 8.04 64-bit system, I
compared the logs. They're quite similar, except for this, in 12.04:
fixme:dbghelp:EnumerateLoadedModulesW64
--
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.