https://bugs.winehq.org/show_bug.cgi?id=51360
Bug ID: 51360
Summary: vkGetDeviceProcAddr invalid behavior for functions
from extensions unsupported by host Vulkan instance
Product: Wine
Version: unspecified
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: winevulkan
Assignee: wine-bugs(a)winehq.org
Reporter: loothelion(a)nvidia.com
Distribution: ---
I believe the below may also be true for vkGetInstanceProcAddr, but I haven't
confirmed this locally.
The Vulkan 1.2.182 specification states the following about the behavior of
vkGetDeviceProcAddr:
> The table below defines the various use cases for vkGetDeviceProcAddr and
> expected return value for each case.
>
> The returned function pointer is of type PFN_vkVoidFunction, and must be cast to
> the type of the command being queried before use. The function pointer must only
> be called with a dispatchable object (the first parameter) that is device or a
> child of device.
>
> Table 2. vkGetDeviceProcAddr behavior
>
> device | pName | return value
> ---------------------------------------------------------------------------------------
> NULL | *[1] | undefined
> ---------------------------------------------------------------------------------------
> invalid device | *[1] | undefined
> ---------------------------------------------------------------------------------------
> device | NULL | undefined
> ---------------------------------------------------------------------------------------
> device | core device-level Vulkan command [2] | fp[3]
> ---------------------------------------------------------------------------------------
> device | enabled extension device-level commands [2] | fp[3]
> ---------------------------------------------------------------------------------------
> any other case, not covered above | NULL
>
> [1] - "*" means any representable value for the parameter (including valid
> values, invalid values, and NULL).
>
> [2] - In this function, device-level excludes all physical-device-level
> commands.
>
> [3] - The returned function pointer must only be called with a dispatchable
> object (the first parameter) that is device or a child of device e.g.
> VkDevice, VkQueue, or VkCommandBuffer.
Winevulkan's behavior differs from this slightly. Note the fifth row of the
table uses the language "enabled extension device-level commands", this means
that if a command is queried via vkGetDeviceProcAddr and isn't part of core,
the extension which introduces it must be enabled for the given VkDevice object
in order for vkGetDeviceProcAddr to return a valid function pointer, and
otherwise it should return NULL.
In order to properly conform to the Vulkan specification Winevulkan should only
expose device-level commands whose extensions have been enabled.
Note that applications should not be querying for Vulkan commands via
vkGetDeviceProcAddr if they know the extension is not supported by the
underlying implementation. However in the case of an application which does
rely on this bad behavior, Winevulkan will return a function pointer to one of
its thunks and then proceed to deference a null function pointer when it tries
to call into the underlying host Vulkan implementation.
--
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=47521
Bug ID: 47521
Summary: digikam 6.10 crashes on start
Product: Wine
Version: 4.11
Hardware: x86
OS: Linux
Status: NEW
Keywords: download, source
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: austinenglish(a)gmail.com
Distribution: Gentoo
Created attachment 64913
--> https://bugs.winehq.org/attachment.cgi?id=64913
crash output
Backtrace:
=>0 0x66401f0a EntryPoint+0xb6a() in qt5widgets (0x006ff4f8)
1 0x1084cf64 WXMPUtils_DuplicateSubtree_1+0x44c5d3() in libdigikamcore
(0x737adae8)
2 0x10388bb9 EntryPoint+0x387818() in libdigikamcore (0x006ff5f8)
3 0x104c0cba WXMPUtils_DuplicateSubtree_1+0xc0329() in libdigikamcore
(0x006ff688)
4 0x2278b630 EntryPoint+0xba28f() in libdigikamgui (0x006ffab8)
5 0x2276e7b3 EntryPoint+0x9d412() in libdigikamgui (0x006ffb98)
6 0x00404be5 _ZN7Digikam6DColor11premultiplyEv+0x15e4() in digikam
(0x006ffe88)
7 0x00401382 EntryPoint+0xffffffff() in digikam (0x006fff28)
8 0x7b47e022 call_process_entry+0x11() in kernel32 (0x006fff48)
9 0x7b480acc start_process+0xeb(entry=<couldn't compute location>,
peb=<couldn't compute location>)
[Z:\home\austin\wine-git\dlls\kernel32\process.c:1297] in kernel32 (0x006fffd8)
10 0x7b47e02e start_process_wrapper+0x9() in kernel32 (0x006fffec)
0x66401f0a EntryPoint+0xb6a in qt5widgets: movl 0x4(%eax),%ecx
austin@laptop:~/Downloads$ du -sh digiKam-6.1.0-Win32.exe
321M digiKam-6.1.0-Win32.exe
austin@laptop:~/Downloads$ sha256sum digiKam-6.1.0-Win32.exe
fb870263a8bb2bd178590dfacfe68110b68d8c5b0ca53606084162a1a5e42b44
digiKam-6.1.0-Win32.exe
--
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=43993
Bug ID: 43993
Summary: Quick3270 5.21: crashes when using the Connect
function
Product: Wine
Version: 2.0.3
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: q3270(a)grr.la
Distribution: ---
Application crashes when I choose Session -> Connect option.
Application error messages is: "Could not find imported function in DLL
C:\windows\system32\ws2_32.dll"
Console output relevant messages:
fixme:module:load_library unsupported flag(s) used (flags: 0x00000800)
fixme:shell:SetCurrentProcessExplicitAppUserModelID
L"DN-Computing.Quick3270.DisplayEmulator": stub
fixme:htmlhelp:HtmlHelpW HH case HH_INITIALIZE not handled.
fixme:ntdll:NtQueryInformationToken QueryInformationToken( ..., TokenElevation,
...) semi-stub
fixme:htmlhelp:HtmlHelpW HH_PRETRANSLATEMESSAGE unimplemented
Application is available as trial here:
https://www.dn-computing.com/download.htm
Prior to launching the application I've installed wine-mono and wine-gecko.
Unsuccessfully tried:
- replacing ws2_32.dll with an original one
- debugging with +relay, the log doesn't show the missing procedure name
--
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=56293
Bug ID: 56293
Summary: user32:msg test_recursive_hook fails on Windows 7
Product: Wine
Version: 9.1
Hardware: x86-64
OS: Windows
Status: NEW
Severity: normal
Priority: P2
Component: user32
Assignee: wine-bugs(a)winehq.org
Reporter: madewokherd(a)gmail.com
https://test.winehq.org/data/tests/user32:msg.html is failing in
test_recursive_hook since Jan 18 with:
msg.c:12680: Test failed: Got expected 16.
This is a new test introduced by 3c9e57d57f6d8bdb2cadbff6fa31cb41b058454f. I
haven't looked in detail, but I guess the behavior is just different on Windows
7?
--
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=51843
Bug ID: 51843
Summary: dlls/ws2_32/socket.c:839:17: error:
‘IP_ADD_SOURCE_MEMBERSHIP’ undeclared here
Product: Wine
Version: 6.18
Hardware: x86
OS: NetBSD
Status: NEW
Severity: blocker
Priority: P2
Component: winsock
Assignee: wine-bugs(a)winehq.org
Reporter: austinenglish(a)gmail.com
gcc -c -o dlls/ws2_32/socket.o dlls/ws2_32/socket.c -Idlls/ws2_32 -Iinclude
-D__WINESRC__ -DUSE_WS_PREFIX -D_REENTRANT -fno-PIC
-fasynchronous-unwind-tables -Wall -pipe -fno-stack-protector
-fno-strict-aliasing -Wdeclaration-after-statement -Wempty-body
-Wignored-qualifiers -Wshift-overflow=2 -Wstrict-prototypes -Wtype-limits
-Wunused-but-set-parameter -Wvla -Wwrite-strings -Wpointer-arith -Wlogical-op
-march=i586 -gdwarf-2 -gstrict-dwarf -fno-omit-frame-pointer
-I/usr/pkg/include -I/usr/include -I/usr/pkg/include/freetype2
-I/usr/X11R7/include -O2 -I/usr/pkg/include -I/usr/include
-I/usr/pkg/include/freetype2 -I/usr/X11R7/include -g
dlls/ws2_32/socket.c:839:17: error: ‘IP_ADD_SOURCE_MEMBERSHIP’ undeclared here
(not in a function); did you mean ‘WS_IP_ADD_SOURCE_MEMBERSHIP’?
MAP_OPTION( IP_ADD_SOURCE_MEMBERSHIP ),
^
dlls/ws2_32/socket.c:792:37: note: in definition of macro ‘MAP_OPTION’
#define MAP_OPTION(opt) { WS_##opt, opt }
^~~
dlls/ws2_32/socket.c:840:17: error: ‘IP_DROP_SOURCE_MEMBERSHIP’ undeclared here
(not in a function); did you mean ‘WS_IP_DROP_SOURCE_MEMBERSHIP’?
MAP_OPTION( IP_DROP_SOURCE_MEMBERSHIP ),
^
dlls/ws2_32/socket.c:792:37: note: in definition of macro ‘MAP_OPTION’
#define MAP_OPTION(opt) { WS_##opt, opt }
^~~
dlls/ws2_32/socket.c:841:17: error: ‘IP_BLOCK_SOURCE’ undeclared here (not in a
function); did you mean ‘WS_IP_BLOCK_SOURCE’?
MAP_OPTION( IP_BLOCK_SOURCE ),
^
dlls/ws2_32/socket.c:792:37: note: in definition of macro ‘MAP_OPTION’
#define MAP_OPTION(opt) { WS_##opt, opt }
^~~
dlls/ws2_32/socket.c:842:17: error: ‘IP_UNBLOCK_SOURCE’ undeclared here (not in
a function); did you mean ‘IP_BLOCK_SOURCE’?
MAP_OPTION( IP_UNBLOCK_SOURCE ),
^
dlls/ws2_32/socket.c:792:37: note: in definition of macro ‘MAP_OPTION’
#define MAP_OPTION(opt) { WS_##opt, opt }
^~~
dlls/ws2_32/socket.c:923:17: error: ‘AI_ALL’ undeclared here (not in a
function); did you mean ‘P_ALL’?
MAP_OPTION( AI_ALL ),
^
dlls/ws2_32/socket.c:792:37: note: in definition of macro ‘MAP_OPTION’
#define MAP_OPTION(opt) { WS_##opt, opt }
^~~
dlls/ws2_32/socket.c:923:17: warning: initialization makes integer from pointer
without a cast [-Wint-conversion]
MAP_OPTION( AI_ALL ),
^
dlls/ws2_32/socket.c:792:37: note: in definition of macro ‘MAP_OPTION’
#define MAP_OPTION(opt) { WS_##opt, opt }
^~~
dlls/ws2_32/socket.c:923:17: note: (near initialization for
‘ws_aiflag_map[4][1]’)
MAP_OPTION( AI_ALL ),
^
dlls/ws2_32/socket.c:792:37: note: in definition of macro ‘MAP_OPTION’
#define MAP_OPTION(opt) { WS_##opt, opt }
^~~
dlls/ws2_32/socket.c:923:17: error: initializer element is not constant
MAP_OPTION( AI_ALL ),
^
dlls/ws2_32/socket.c:792:37: note: in definition of macro ‘MAP_OPTION’
#define MAP_OPTION(opt) { WS_##opt, opt }
^~~
dlls/ws2_32/socket.c:923:17: note: (near initialization for
‘ws_aiflag_map[4][1]’)
MAP_OPTION( AI_ALL ),
^
dlls/ws2_32/socket.c:792:37: note: in definition of macro ‘MAP_OPTION’
#define MAP_OPTION(opt) { WS_##opt, opt }
^~~
dlls/ws2_32/socket.c: In function ‘WS_setsockopt’:
dlls/ws2_32/socket.c:5639:27: error: storage size of ‘mreq_source’ isn’t known
struct ip_mreq_source mreq_source;
^~~~~~~~~~~
dlls/ws2_32/socket.c:5856:24: error: request for member ‘imr_interface’ in
something not a structure or union
mreq_source.imr_interface.s_addr = val->imr_interface.S_un.S_addr;
^
dlls/ws2_32/socket.c:5856:38: error: request for member ‘s_addr’ in something
not a structure or union
mreq_source.imr_interface.s_addr = val->imr_interface.S_un.S_addr;
^
dlls/ws2_32/socket.c:5856:13: warning: statement with no effect
[-Wunused-value]
mreq_source.imr_interface.s_addr = val->imr_interface.S_un.S_addr;
^~~~~~~~~~~
dlls/ws2_32/socket.c:5857:24: error: request for member ‘imr_multiaddr’ in
something not a structure or union
mreq_source.imr_multiaddr.s_addr = val->imr_multiaddr.S_un.S_addr;
^
dlls/ws2_32/socket.c:5857:38: error: request for member ‘s_addr’ in something
not a structure or union
mreq_source.imr_multiaddr.s_addr = val->imr_multiaddr.S_un.S_addr;
^
dlls/ws2_32/socket.c:5857:13: warning: statement with no effect
[-Wunused-value]
mreq_source.imr_multiaddr.s_addr = val->imr_multiaddr.S_un.S_addr;
^~~~~~~~~~~
dlls/ws2_32/socket.c:5858:24: error: request for member ‘imr_sourceaddr’ in
something not a structure or union
mreq_source.imr_sourceaddr.s_addr =
val->imr_sourceaddr.S_un.S_addr;
^
dlls/ws2_32/socket.c:5858:39: error: request for member ‘s_addr’ in something
not a structure or union
mreq_source.imr_sourceaddr.s_addr =
val->imr_sourceaddr.S_un.S_addr;
^
dlls/ws2_32/socket.c:5858:13: warning: statement with no effect
[-Wunused-value]
mreq_source.imr_sourceaddr.s_addr =
val->imr_sourceaddr.S_un.S_addr;
^~~~~~~~~~~
dlls/ws2_32/socket.c:5861:20: warning: assignment makes integer from pointer
without a cast [-Wint-conversion]
optlen = sizeof(mreq_source);
^
dlls/ws2_32/socket.c:5639:27: warning: unused variable ‘mreq_source’
[-Wunused-variable]
struct ip_mreq_source mreq_source;
^~~~~~~~~~~
dlls/ws2_32/socket.c: In function ‘WS_gethostbyaddr’:
dlls/ws2_32/socket.c:6092:19: warning: implicit declaration of function
‘gethostbyaddr_r’; did you mean ‘gethostbyaddr’?
[-Wimplicit-function-declaration]
int res = gethostbyaddr_r(paddr, len, unixtype,
^~~~~~~~~~~~~~~
gethostbyaddr
dlls/ws2_32/socket.c: In function ‘WS_gethostbyname’:
dlls/ws2_32/socket.c:6284:23: warning: implicit declaration of function
‘gethostbyname_r’; did you mean ‘gethostbyname2’?
[-Wimplicit-function-declaration]
int res = gethostbyname_r(name, &hostentry, extrabuf, ebufsize,
&host, &locerr);
^~~~~~~~~~~~~~~
gethostbyname2
At top level:
dlls/ws2_32/socket.c:1796:12: warning: ‘set_ipx_packettype’ defined but not
used [-Wunused-function]
static int set_ipx_packettype(int sock, int ptype)
^~~~~~~~~~~~~~~~~~
--
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=51770
Bug ID: 51770
Summary: digikam-7.1.0 freezes on start
Product: Wine
Version: 6.17
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: aros(a)gmx.com
Distribution: ---
Steps to reproduce:
1) Run
2) Click Next, Next, Next, Next, Next
3) It freezes
If you attempt to start it again, it just freezes without showing anything.
--
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=44073
Bug ID: 44073
Summary: Nier:Automata has blocky artifacts
Product: Wine
Version: 2.21
Hardware: x86
URL: http://www.mediafire.com/file/me8dsk3asiuqoiw/automata
.7z
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: directx-d3d
Assignee: wine-bugs(a)winehq.org
Reporter: dark.shadow4(a)web.de
Distribution: ---
Created attachment 59788
--> https://bugs.winehq.org/attachment.cgi?id=59788
Screenshot showing artifacts
Program only works with wine-staging, and you need CSMT enabled to avoid severe
graphical glitches.
I'm using mesa drivers on Linux 4.14.2.
I made an apitrace of the Direct3D calls(1.4GB, 543MB compressed), linked it in
the URL field.
It used to work, but even if I downgrade everything (wine, mesa, linux) I still
can't get it to work. Might be a driver issue, but I'm not sure.
Since I don't have another Linux system I can't really test it, I'd really
appreciate if someone tried to reproduce the issue.
You need to get the windows binaries for apitrace, and then just run "wine
apitrace.exe *.trace"
--
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=52695
Bug ID: 52695
Summary: Titan Quest crashes at start with "0xc0000005
(EXCEPTION_ACCESS_VIOLATION)"
Product: Wine
Version: 7.4
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: enni(a)telsh.de
Distribution: ---
Hi!
After the latest WINE update to 7.4 the game "Titan Quest" (with or without
latest DLCs at latest version from GOG) does not start anymore.
After having had some issues with version 7.3 I did a clean reinstall of the
whole WINEPREFIX. Codewise this looks like:
$ cd $WINEPREFIX && cd ..
$ rm -rf $WINEPREFIX && mkdir $WINEPREFIX
Then I added some fonts and the codec to play the mp3 sound files, in the past
I did some tests and these were always needed:
$ winetricks corefonts tahoma l3codecx
Then I installed the game and tried to run it. The first chord of the
soundtrack is played a couple of times (sounds like an echo) and then the game
crashes. The screen stays black all the time, the mouse curser is like in the
game.
To check if it would solve the issue I installed a couple of libs/dlls:
* dsound
* dmusic
* directplay
* xvid
* allcodecs
and changed the sound setting "sound=pulse".
Unfortunately nothing solves the issue.
Attached is a dump text file, I would be able to provide the binary/debugger
file as well, it's ~2.5 MB large and I wasn't sure if it would be wasted here
because the txt file might be sufficient and is easier to read.
Also attached is the output of
$ winetricks list-all
after the initial installation with the fonts and codec.
And the output of
$ WINEDEBUG=+all wine TQ.exe
is attached as well.
Thanks alot for your support, I'd love to play this game again and would like
to update the wiki entry as well as soon as this is resolved. It looks like
somebody else with a Debian/Ubuntu system was able to install the same version
and there it works without any issue. So maybe it is related to that "strip"
issue that ArchLinux had?
Kind regards,
enni
PS: I see that I can only attach one file, will try to add the other files as
comment after creation.
--
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=41604
Bug ID: 41604
Summary: Access violation in CertAddSerializedElementToStore
Product: Wine
Version: 1.9.20
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: crypt32
Assignee: wine-bugs(a)winehq.org
Reporter: mterrisse(a)free.fr
Distribution: ---
Hello,
I am trying to work around this bug
https://bugs.winehq.org/show_bug.cgi?id=11070 (importpfx fails, needs
PFXImportCertStore implementation).
On Windows (10, 1607) I serialize a certificate to a buffer with
CertSerializeCertificateStoreElement, and write this buffer into a file.
On Linux (Ubuntu 16.10, PlayOnLinux, Wine 1.9.10) I read the buffer from the
file and I import it with CertAddSerializedElementToStore.
-> It fails and GetLastError returns STATUS_ACCESS_VIOLATION.
I had a look at the code: in crypt32/serialize.c (1.9.21),
CRYPT_ReadSerializedElement, you can read
__EXCEPT_PAGE_FAULT
{
SetLastError(STATUS_ACCESS_VIOLATION);
context = NULL;
}
__ENDTRY
So there is really an access violation.
--
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=56206
Bug ID: 56206
Summary: Hardwar UIM.06 launcher (Hardman.exe) has shrinked UI
tabs
Product: Wine
Version: 9.0-rc1
Hardware: x86-64
URL: https://archive.org/download/HARDWAR/HARDWAR.zip
OS: Linux
Status: NEW
Keywords: download, regression
Severity: minor
Priority: P2
Component: comctl32
Assignee: wine-bugs(a)winehq.org
Reporter: gyebro69(a)gmail.com
CC: brendan(a)redmandi.com
Regression SHA1: 39ae8778ca415780e23d0185cb4d5040aca4c789
Distribution: ArchLinux
Created attachment 75919
--> https://bugs.winehq.org/attachment.cgi?id=75919
Hardman.exe launcher screen (before/after)
The launcher for the game Hardwar (Steam) shows tabs in the UI in 2 rows. The
second row of tabs in the UI however is not visible, looks like that row is
shrinked.
Clicking on the upper (visible) row reveals the lower row of tabs (see attached
screenshot for comparison).
Reverting commit 39ae8778ca415780e23d0185cb4d5040aca4c789
fixes the problem for me.
Installing native comctl32.dll via winetricks on the other hand doesn't fix the
problem.
To reproduce the problem with the non-Steam demo version (after UIM.06 patch is
installed):
1. Install the demo located in the URL. Don't launch the game yet.
2. Download and install the UIM.06 patch from
http://www.zedo.hardwar.info/HardwarUIM06.zip.
3. Launch Hardman.exe from the game directory.
The problem occurs with the Steam version too (already patched with UIM.06).
DRM-free, can be launched without Steam running.
https://store.steampowered.com/app/1500540/Hardwar/
wine-9.0-54-g1932c3a2516
--
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=56239
Bug ID: 56239
Summary: explorer doesn't honor smaller virtual desktop size
when changed through winecfg
Product: Wine
Version: 9.0-rc3
Hardware: x86-64
OS: Linux
Status: NEW
Severity: normal
Priority: P2
Component: programs
Assignee: wine-bugs(a)winehq.org
Reporter: o.dierick(a)piezo-forte.be
Distribution: ---
Hello,
After creating a wineprefix, I enabled a virtual desktop size of 3840x1024
corresponding to my monitor full-screen setup (3x 1280x1024).
I installed Steam, and it opened its window in the center. The taskbar was
visible with the steam icon in the bottom right.
I installed a Steam game demo and launched it. The demo could run with that
resolution but had some glitches that I wanted to test at a lower resolution.
I changed the virtual desktop size to 1154x864 (the game supports that, and
even lower).
When I launched Steam next, I could not see the Steam window, nor the taskbar.
The taskbar was initially visible but disappeared when Steam was supposed to
load its icon. I had no way to move the Steam window back to the visible
desktop area.
I reverted the desktop size change, re-ran steam and moved the main window to
the top left corner.
Then I changed the desktop size to 1154x864 again.
This time, when Steam opened, the window was at the top left corner where I put
it, but the taskbar did again disappear when the steam window opened. I tried
to run the game demo anyway. The game initially appeared fullscreen, but what
seems to be a cropped 1154x864 corner of the 3840x1024 full-screen rendering. I
nonetheless tried to change the in-game screen resolution to match the desktop,
but I couldn't. There was standard VGA and widescreen resolutions upto
3840x1204. I chose 1024x768 and apply. The desktop didn't change size. I was
simply left with a full black screen 1154x864 virtual desktop window. Hovering
the mouse to the right of the Wine window, I could hear the menu options
hovering clicking noises, approximately where a 1024x768 screen would be,
centered in a 3840x1024 desktop of which the wine windows was a 1154x864 top
left corner.
So although I only saw a 1154x864 chunk of the desktop, the applications still
acted like the desktop was still 3840x1024.
I tested this with task manager and could replicate the issue. The task manager
window stays where it was last in the larger virtual desktop and the taskbar
also moves to where it was in the larger virtual desktop, meaning that if the
size is sufficiently smaller, all there is left is an empty blue screen and no
way to move the window back to the visible space or to click on the icons or
taskbar menu.
I haven't done a regression test yet.
Regards.
--
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=56303
Bug ID: 56303
Summary: Tony & Friends - New Adventures: Invasion in Kellogg's
Land: Crashes randomly
Product: Wine
Version: 9.1
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: mail(a)felix-potthast.de
Distribution: ---
Created attachment 76020
--> https://bugs.winehq.org/attachment.cgi?id=76020
winedbg backtrace wow64 mode
I installed wine using the wine-git archlinux aur package.
The version shown by `wine --version` is: wine-9.1-169-g6b853a9354d
I set the windows version to Windows 98 using winecfg.
I installed the game by mounting the cdimage.iso from
https://archive.org/download/Werbespiele/Tony%20%26%20Friends%202%20-%20R2P…
and then running SETUP.exe
When i then run the installed game in the program files folder it crashes soon
but always at a different point during any level.
sha1sum of installed game exe:
47766e5ab76487bfba990b1315285ec77ec5f30e tony2.exe
I tried it with and without setting WINEARCH=win32
Backtrace for wow64 case is 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.
https://bugs.winehq.org/show_bug.cgi?id=38019
Bug ID: 38019
Summary: VLC is garbage if dragged to different monitor
Product: Wine
Version: 1.7.35
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: damianatorrpm(a)gmail.com
Distribution: ---
Install VLC media player.
Start some movie/video file.
Works fine as long as vlc is running on the monitor it was started on.
If you drag VLC with a running video to another monitor, the video freezes
(sound continues).
Easily reproducible and vlc is also gpl and can be found here:
http://www.videolan.org/vlc/download-windows.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.
https://bugs.winehq.org/show_bug.cgi?id=56305
Bug ID: 56305
Summary: CryptEnumProviders doesn't set pdwProvType when
szProvName is NULL
Product: Wine
Version: 9.1
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: advapi32
Assignee: wine-bugs(a)winehq.org
Reporter: dm.klionsky(a)gmail.com
Distribution: ---
The call like below doesn't changes dwType.
```
DWORD dwIndex = 0;
DWORD dwType = -1;
DWORD cbName = -1;
CryptEnumProviders(dwIndex, NULL, 0, &dwType, NULL, &cbName);
```
At the same time the call like below does change dwType.
```
CryptEnumProviders(dwIndex, NULL, 0, &dwType, "Microsoft Base Cryptographic
Provider v1.0", &cbName);
```
--
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=55604
Bug ID: 55604
Summary: Roblox: Crashes when launching
Product: Wine
Version: 8.16
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: ntdll
Assignee: wine-bugs(a)winehq.org
Reporter: vixea0(a)gmail.com
Distribution: ---
Roblox fails to launch "experiences". This issue was bisected to this commit
hash, ea640f6cece7660ffc853b7d574fbe52af34901a or
https://gitlab.winehq.org/wine/wine/-/commit/ea640f6cece7660ffc853b7d574fbe…
reverting it to the previous commit allows Roblox to completely function again.
--
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=56302
Bug ID: 56302
Summary: Bibleworks 10
Product: Wine
Version: 6.0
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: lorenzo.flori(a)hotmail.com
Distribution: ---
Created attachment 76019
--> https://bugs.winehq.org/attachment.cgi?id=76019
I copied here infos at the crash of the program
Bibleworks 10 crashes, here with Linux Mint 21.2 and also on my laptot with
Ubuntu 22.04! But for years I haven't had problems... Why???
--
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=42400
Bug ID: 42400
Summary: cscript.exe doesn't show errors
Product: Wine-gecko
Version: unspecified
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-gecko-unknown
Assignee: jacek(a)codeweavers.com
Reporter: kolan_n(a)mail.ru
Distribution: ---
When there is an error in a script cscript.exe outputs nothing.
--
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=56194
Bug ID: 56194
Summary: Dungeon & Fighter Private server needs
ntdll.NtdllDefWindowProc_W
Product: Wine
Version: 9.0-rc5
Hardware: x86-64
OS: Linux
Status: NEW
Severity: normal
Priority: P2
Component: ntdll
Assignee: wine-bugs(a)winehq.org
Reporter: dark.shadow4(a)web.de
Distribution: ---
Originally reported at
https://www.reddit.com/r/winehq/comments/18zstc7/i_receive_an_error_message…
--
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=56300
Bug ID: 56300
Summary: Autodesk Fusion360: Project files won't upload
Product: Wine
Version: 9.1
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: skala.antonin(a)gmail.com
Distribution: ---
With finally working SSO we can start to use Fusion however problem emerged
immediately. With wine 9.1, Fusion is unable to upload saved files. Progress
bar is in a middle of the way and closing fusion show warning about unfinished
upload jobs. I cant tell if this worked with previous version of wine as there
was a big update on January.
--
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=41983
Bug ID: 41983
Summary: Creatures 2: applets can't connect to the main program
Product: Wine
Version: 1.9.8
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: skerit(a)kipdola.com
Distribution: ---
Created attachment 56393
--> https://bugs.winehq.org/attachment.cgi?id=56393
Creatures 2 console output when starting applet
The Creatures 2 game uses special applets (executables) that connect to the
main game.
This does not work, however:
the game will complain it can't connect to the applet.
There's no crash or anything, the applet just does nothing.
--
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=56298
Bug ID: 56298
Summary: A problem with Database Access?
Product: Wine
Version: 9.1
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: fvenale(a)gmail.com
Distribution: ---
Created attachment 76016
--> https://bugs.winehq.org/attachment.cgi?id=76016
Wine9-Mathcad_backtrace
I was installing Mathcad 2001i Professional through Wine 9 in Linux Mint 21.3.
But I can't continue to write equations after the sign equal (=). Thank you
--
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=47070
Bug ID: 47070
Summary: DA: Inquisition can't see gamepad
Product: Wine
Version: 4.6
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: xinput
Assignee: wine-bugs(a)winehq.org
Reporter: timofeevsv1989(a)gmail.com
Distribution: ---
Dragon Age Inquisition uses xinput9_1_0.dll which not implemented properly.
--
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=56295
Bug ID: 56295
Summary: Securom problems with YugiOh Joey The Passion
Product: Wine
Version: 9.1
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: ds000001(a)outlook.de
Distribution: ---
Hello,
I don't even know if this is a problem from Wine.
If not, please send me into the right direction and close this bug.
The game YugiOh Joey The Passion uses Securom v5 as copy protection.
Securom uses a sort feature I understand as "multi filesystem".
If the game is started, Securom remounts the disk to do it's job and
this seems to be an issue even on Windows sometimes.
If I insert this disc, I get this log in dmesg:
sr 1:0:0:0: Attached scsi CD-ROM sr0
sr 1:0:0:0: [sr0] tag#0 FAILED Result: hostbyte=DID_OK driverbyte=DRIVER_OK
cmd_age=0s
sr 1:0:0:0: [sr0] tag#0 Sense Key : Illegal Request [current]
sr 1:0:0:0: [sr0] tag#0 Add. Sense: Illegal mode for this track
sr 1:0:0:0: [sr0] tag#0 CDB: Read(10) 28 00 00 02 81 5e 00 00 02 00
I/O error, dev sr0, sector 656760 op 0x0:(READ) flags 0x80700 phys_seg 1 prio
class 2
sr 1:0:0:0: [sr0] tag#0 FAILED Result: hostbyte=DID_OK driverbyte=DRIVER_OK
cmd_age=0s
sr 1:0:0:0: [sr0] tag#0 Sense Key : Illegal Request [current]
sr 1:0:0:0: [sr0] tag#0 Add. Sense: Illegal mode for this track
sr 1:0:0:0: [sr0] tag#0 CDB: Read(10) 28 00 00 02 81 5e 00 00 02 00
I/O error, dev sr0, sector 656760 op 0x0:(READ) flags 0x0 phys_seg 1 prio class
2
Buffer I/O error on dev sr0, logical block 82095, async page read
sr 1:0:0:0: [sr0] tag#0 FAILED Result: hostbyte=DID_OK driverbyte=DRIVER_OK
cmd_age=0s
sr 1:0:0:0: [sr0] tag#0 Sense Key : Illegal Request [current]
sr 1:0:0:0: [sr0] tag#0 Add. Sense: Illegal mode for this track
sr 1:0:0:0: [sr0] tag#0 CDB: Read(10) 28 00 00 02 81 5e 00 00 02 00
I/O error, dev sr0, sector 656760 op 0x0:(READ) flags 0x80700 phys_seg 1 prio
class 2
sr 1:0:0:0: [sr0] tag#0 FAILED Result: hostbyte=DID_OK driverbyte=DRIVER_OK
cmd_age=0s
sr 1:0:0:0: [sr0] tag#0 Sense Key : Illegal Request [current]
sr 1:0:0:0: [sr0] tag#0 Add. Sense: Illegal mode for this track
sr 1:0:0:0: [sr0] tag#0 CDB: Read(10) 28 00 00 02 81 5e 00 00 02 00
I/O error, dev sr0, sector 656760 op 0x0:(READ) flags 0x0 phys_seg 1 prio class
2
Buffer I/O error on dev sr0, logical block 82095, async page read
This is the only disc so far, that triggers this behaviour.
If I play now around, eject, insert, disconnect, reconnect, etc. the disc and
disc drive,
after some time it has the right value in /dev/disk/by-diskseq and the game
starts.
Which value is correct depends on the mood of the game, I got once to 14 before
the game started.
Is this something that can be fixed on Wines' side?
Have a nice day,
ds000001
--
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=13679
Summary: Trados: installation hanging due to failure at the
registration of assembly
Product: Wine
Version: 0.9.60
Platform: Other
OS/Version: other
Status: UNCONFIRMED
Severity: enhancement
Priority: P2
Component: mscoree
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: yolande(a)haneder.biz
Attached the log, it speaks for itself:
The part starting with fixme:atl:AtlModuleInit SEMI-STUB (0x40eb40 0x40c040
0x400000) at the end was on my console as I sent the rest to a text file.
May be related or not to bug 12930 (and the failure of the service to
initialize).
Both do not happen at the same time but they appeared in the same version.
I added mscoree as component because on another log (installation/repair of the
same problem) I saw that mscoree was loaded when mscorlib 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=48152
Bug ID: 48152
Summary: SDL Trados 2019 throws backtrace
Product: Wine
Version: 4.19
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: maiktapwagner(a)aol.com
Distribution: ---
Created attachment 65766
--> https://bugs.winehq.org/attachment.cgi?id=65766
Backtrace (4.19 Staging)
Download URL is at: trados.sdlproducts.com/SDLTradosStudio2019Trial.exe
An entry for the AppDB has been submitted and I would like to post the
backtrace I got from wine 4.19-staging here.
--
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=56294
Bug ID: 56294
Summary: WineD3D make Hellforce very slow and unstable to play
Product: Wine
Version: 9.1
Hardware: x86-64
OS: Windows
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: mrdudepedroterra(a)gmail.com
I am trying to play the russian game called HellForce with WineD3D, but smiliar
with others games, the game is very unstable to play, when looking down the
game runs normal but when look everywhere, it beign very slow, and if used in
bas way, every model whill be bugged, what i do?
--
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=56289
Bug ID: 56289
Summary: msi: "Browse" button in installer always enabled
Product: Wine
Version: 9.1
Hardware: x86-64
OS: Linux
Status: NEW
Severity: normal
Priority: P2
Component: msi
Assignee: wine-bugs(a)winehq.org
Reporter: dark.shadow4(a)web.de
Distribution: ---
You can test with Tortoise Git installer.
When selecting a subfeature for example, the "Browse" button should be greyed
out.
--
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=56281
Bug ID: 56281
Summary: String number converted to ascii value instead of
parsed value
Product: Wine
Version: 9.0
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: vbscript
Assignee: wine-bugs(a)winehq.org
Reporter: francisdb(a)gmail.com
Distribution: ---
> cat test.vbs
Dim x
x = "0"
If IsNumeric(x) Then
WScript.Echo "Numeric"
Else
WScript.Echo "Not Numeric"
End If
If x > 30 Then
WScript.Echo "> 30"
Else
WScript.Echo "Not > 30"
End If
> wine cscript test.vbs
0088:fixme:hid:handle_IRP_MN_QUERY_ID Unhandled type 00000005
0088:fixme:hid:handle_IRP_MN_QUERY_ID Unhandled type 00000005
0088:fixme:hid:handle_IRP_MN_QUERY_ID Unhandled type 00000005
0088:fixme:hid:handle_IRP_MN_QUERY_ID Unhandled type 00000005
Numeric
> 30
Windows
> cscript test.vbs
Microsoft (R) Windows Script Host Version 5.812
Copyright (C) Microsoft Corporation. All rights reserved.
Numeric
Not > 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.
https://bugs.winehq.org/show_bug.cgi?id=46666
Bug ID: 46666
Summary: Al Unser, Jr Arcade Racing has weird colors
Product: Wine
Version: 4.0
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: haakobja(a)gmail.com
Distribution: ---
Created attachment 63612
--> https://bugs.winehq.org/attachment.cgi?id=63612
Screenshot showing wrong colors
Hi,
I have recently tried Al Unser, Jr. Arcade Racing with Wine, the game itself is
from 1995 so its is quite old. I was just curious. I have managed to get the
game working, but the colors is not right. The game requires an 8 bit display,
otherwise it refuses to start.
I followed the recommendations and used the following commands:
$ Xephyr :1 -screen 800x600x8 -cc 3 &
$ DISPLAY=:1 wine alunser.exe
The game starts, but the colors are wrong. As displayed in my attached image.
A demo, which displays the same colors, are available at:
https://archive.org/details/Alunser. There's also an image displaying the
colors as they should be.
--
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=56232
Bug ID: 56232
Summary: Sega Bug fails to initialize
Product: Wine
Version: 3.17
Hardware: x86
OS: Linux
Status: NEW
Severity: normal
Priority: P2
Component: d3d
Assignee: wine-bugs(a)winehq.org
Reporter: alexhenrie24(a)gmail.com
Distribution: ---
Created attachment 75943
--> https://bugs.winehq.org/attachment.cgi?id=75943
WINEDEBUG=+d3d,+ddraw
Steps to reproduce:
1. Insert the Sega Bug CD
2. Run `Xephyr :1 -ac -screen 800x600x8 &`
3. Run `DISPLAY=:1 openbox &`
4. Run `DISPLAY=:1 wine 'D:\win95\bug!.exe'`
An error dialog titled "Error Initialising" appears that says "A hardware-only
DirectDraw object creation was attempted but the driver did not support any
hardware." After clicking OK, a second dialog appears that says "Could not
initialise DirectDraw".
I have a patch that I could apply to Wine < 3.17 to get the game to work, but
this error is relatively new. `git bisect` says:
7b2ff904042ee95214b6c5b4a80e51d7f6b24c2b is the first bad commit
commit 7b2ff904042ee95214b6c5b4a80e51d7f6b24c2b
Author: Józef Kucia <jkucia(a)codeweavers.com>
Date: Mon Sep 24 01:09:31 2018 +0200
wined3d: Pass feature levels to wined3d_device_create().
Signed-off-by: Józef Kucia <jkucia(a)codeweavers.com>
Signed-off-by: Henri Verbeet <hverbeet(a)codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard(a)winehq.org>
Debug traces are attached. I believe the relevant line is:
0024:warn:ddraw:ddraw_surface_create Video memory surfaces not supported
without 3D support.
--
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=47490
Bug ID: 47490
Summary: GlobalLock different behavior
Product: Wine
Version: 1.6.2
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: kernel32
Assignee: wine-bugs(a)winehq.org
Reporter: ghotik2002(a)yahoo.com
Distribution: ---
Different behavior of GlobalLock in DxWnd GUI routine.
This is an extract of source code:
IStream *pStream = 0;
CreateStreamOnHGlobal(0, TRUE, &pStream);
LONG cbSize = 0;
hr = pPicture->SaveAsFile(pStream, TRUE, &cbSize);
if(FAILED(hr)) {
OutTrace("GrayIcon: SveAsFile error hr=%#x\n", hr);
return NULL;
}
HGLOBAL hBuf = 0;
hr = GetHGlobalFromStream(pStream, &hBuf);
if(FAILED(hr)) {
OutTrace("GrayIcon: GetHGlobalFromStream error hr=%#x\n", hr);
return NULL;
}
buf = (BYTE *)GlobalLock(hBuf);
if(buf == NULL) {
OutTrace("GrayIcon: GlobalLock error err=%d\n", GetLastError());
return NULL;
}
the stream holds an icon picture, everything is ok but the GlobalLock call:
- in Windows it returns a valid memory address
- in Wine/Linux it returns NULL errno 157 ERROR_DISCARDED - The segment is
already discarded and cannot be locked.
All this is in DxWnd program run on Wine/Linux environment.
P.s. my first bug report here - hope everything is more or less ok ... ;)
--
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=56277
Bug ID: 56277
Summary: Appindicator or statusnotifier support
Product: Wine
Version: unspecified
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: marlonn.dev(a)proton.me
Distribution: ---
Created attachment 75996
--> https://bugs.winehq.org/attachment.cgi?id=75996
Image of deattached system tray
I'm trying to run programs from both lutris and steam(via proton) but every
time the programs has a tray icon, a new window pops up with that tray icon.
For Lutris i'm using Wine-Ge-25 and for steam i'm using proton experimental
bleeding edge.
As I've understood it wine does not support statusnotifier and/or Appindicator.
Wine seems to be using Xembed instead and since that doesnt scale well with
modern desktop i propose and update to statusnotifier and/or appindicator
support
Solus 4.5
Budgie 10.8.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.
https://bugs.winehq.org/show_bug.cgi?id=56279
Bug ID: 56279
Summary: Wine fails to build if CC is set to the absolute path
for the compiler
Product: Wine
Version: unspecified
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: minor
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: vibhavp(a)gmail.com
Distribution: ---
At least as of commit e607da943aa (win32u: Only queue a single IME update
during ImeProcessKey.), the Wine build fails if any of the [<ARCH>_]CC
environment variables are set to an absolute path to GCC/Clang, as opposed to
just the executable name. This can be reproduced by configuring and building
Wine with the follow environment variables:
export CC='/usr/bin/gcc'
export CROSSCC='/usr/bin/i686-w64-mingw32-gcc'
export i386_CC='/usr/bin/i686-w64-mingw32-gcc'
export x86_64_CC='55/usr/bin/x86_64-w64-mingw32-gcc'
The failure is specifically due to winebuild being provided an invalid target
specification argument (in this case, `/usr/bin/i686-w64-mingw32` instead of
`i686-w64-mingw32` ):
tools/winebuild/winebuild -w --staticlib -o
dlls/winecrt0/i386-windows/libwinecrt0.a -b /usr/bin/i686-w64-mingw32 \
...
winebuild: Unrecognized target '/usr/bin/i686-w64-mingw32'
make: *** [Makefile:167493: dlls/winecrt0/i386-windows/libwinecrt0.a] Error 1
--
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=56268
Bug ID: 56268
Summary: The XM1 Configuration Software doesn't detect the
mouse
Product: Wine
Version: 9.0-rc1
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: bq74stlxvkpb(a)opayq.com
Distribution: ---
Created attachment 75985
--> https://bugs.winehq.org/attachment.cgi?id=75985
XM1 RGB isn't detected by its configuration application
When attempting to modify the firmware of an XM1 RGB mouse, the configuration
tool fails to detect it.
The tool can be freely downloaded at:
https://www.endgamegear.com/en-us/downloads/xm1rgb
The downloaded file should be XM1_RGB_Configuration_Software_(V1.01).zip
The installation goes fine.
No mouse is detected, however - see the attachment.
Under native Win7, the installation fails, so I cannot use that as a
workaround. I had to use native Win10 on my work-issued laptop to modify the
firmware.
Side note - the reason why I am doing this is that the mouse in question, by
default, cycles through colours RAPIDLY. It's almost seizure-inducing. I've
changed it to solid white.
Additional bug I just found out - while the systray icon for it appears while
it is running, right-clicking it opens its context menu... behind the taskbar.
Furthermore, clicking elsewhere doesn't close its systray icon context menu.
--
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=55167
Bug ID: 55167
Summary: Spotify crashes when trying to install
Product: Wine
Version: 8.11
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: just4steam778(a)gmail.com
Distribution: ---
Created attachment 74747
--> https://bugs.winehq.org/attachment.cgi?id=74747
Launch log
I'm trying to install the Windows version of Spotify and it immediately crashes
when I launch the executable.
Wine build: wine-8.11-125-g3d28f9d362e
OS: Arch Linux
--
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=56272
Bug ID: 56272
Summary: Missing axes and buttons from Turtle beach flightstick
yoke
Product: Wine
Version: 9.0
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: keri24601(a)yahoo.com
Distribution: ---
Created attachment 75993
--> https://bugs.winehq.org/attachment.cgi?id=75993
screenshot of control.exe and jstest
jstest-gtk correctly identifies the yoke as having 10 axes and 34 buttons.
Running in wine with control.exe, there's only 4 working axes + 2 of them that
overlap, with 10 buttons and, one of the hats work.
The wine version is 9.0
--
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=55470
Bug ID: 55470
Summary: i686-w64-mingw32-gcc assumes wrong stack alignment
Product: Wine
Version: unspecified
Hardware: x86
OS: Linux
Status: NEW
Severity: normal
Priority: P2
Component: build-env
Assignee: wine-bugs(a)winehq.org
Reporter: stefan(a)codeweavers.com
Distribution: ---
Created attachment 75028
--> https://bugs.winehq.org/attachment.cgi?id=75028
Example C code to show the issue
This is probably not a Wine bug, but something we may want to document and take
care of one way or another:
i686-w64-mingw32-gcc quietly assumes 16 byte stack alignment, which is wrong
for Win32. To see the effect compile and disassemble the attached test.c with
i686-w64-mingw32-gcc test.c -c -O2
i686-w64-mingw32-objdump -d test.o
The outcome:
0: 81 ec ac 01 00 00 sub $0x1ac,%esp
6: 8d 44 24 10 lea 0x10(%esp),%eax
a: 89 04 24 mov %eax,(%esp)
d: e8 00 00 00 00 call 12 <_func+0x12>
12: 81 c4 ac 01 00 00 add $0x1ac,%esp
18: c3 ret
However, x86_64-w64-mingw32-gcc -m32 properly aligns the stack before placing
the aligned structure:
x86_64-w64-mingw32-gcc test.c -c -O2 -m32
i686-w64-mingw32-objdump -d test.o
0: 55 push %ebp
1: 89 e5 mov %esp,%ebp
3: 83 e4 f0 and $0xfffffff0,%esp
6: 81 ec a0 01 00 00 sub $0x1a0,%esp
c: 8d 44 24 10 lea 0x10(%esp),%eax
10: 89 04 24 mov %eax,(%esp)
13: e8 00 00 00 00 call 18 <_func+0x18>
18: c9 leave
19: c3 ret
To my knowledge Wine does not use SSE instructions on purpose, so we should be
mostly fine. msvcrt, wined3d or dsound (especially when compiled to use SSE to
make Rosetta 2 happy) may be affected.
The test.c file is attached.
What can we do about it?
1) Ignore it
2) pass -mincoming-stack-boundary=2 to mingw for 32 bit targets
3) Use 64 bit target mingw with -m32
I'll file a bug for mingw too, linking this bug as reference.
--
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=56216
Bug ID: 56216
Summary: Wine 9.0 Wayland cursor does not hide when holding
mouse button on game world to move camera/character
Product: Wine
Version: 9.0
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: yaomtc(a)protonmail.com
Distribution: ---
I have tested this with Final Fantasy XIV.
In FFXIV, intended behavior is for the cursor to be hidden while holding down
the left and/or right mouse button to move the camera and/or your character. It
does not, it just locks in place (good, but it should be invisible too). This
works correctly with X11 or XWayland, but with the experimental Wayland driver,
the cursor does not hide.
--
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=55041
Bug ID: 55041
Summary: QuickTime movie plays but screen is black
Product: Wine
Version: 8.6
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: mildred-bug.winehq(a)mildred.fr
Distribution: ---
When running "The Wheel of Time"
https://appdb.winehq.org/objectManager.php?sClass=version&iId=2154 cutscenes
will play but the screen stays black. It uses QuickTime Lite 4.1.0 for movies.
Using wayland (SwayWM)
During movie playback, I see the following log repeated:
0058:fixme:mountmgr:harddisk_ioctl Unsupported ioctl 70c00 (device=7 access=0
func=300 method=0)
There is in a forum someone that had a similar issue and found a solution
(translated by me):
> I think the problem comes from QuickTime, the software installs version 7.2
> Via wine control, I disabled directx for the video and set up safe move (GDI only)
> It seems to hold, I must test again to be sure.
> The issue really came from quicktime and my change solved the issue.
>
> https://forum.ubuntu-fr.org/viewtopic.php?id=389950
I tried winetricks render=nod3d or render=gdi but it does not help.
--
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=55589
Bug ID: 55589
Summary: Tomb Raider: Legend has black/blue artifacts
Product: Wine
Version: 6.22
Hardware: x86-64
URL: https://www.moddb.com/games/tomb-raider-legend/downloa
ds/tomb-raider-legend-updated-demo
OS: Linux
Status: NEW
Keywords: download, regression
Severity: normal
Priority: P2
Component: d3d
Assignee: wine-bugs(a)winehq.org
Reporter: andrey.goosev(a)gmail.com
CC: matteo.mystral(a)gmail.com
Regression SHA1: 884b7c50cfd902eff9a41562a103e3bd5747422b
Distribution: ---
Created attachment 75116
--> https://bugs.winehq.org/attachment.cgi?id=75116
example
After enabling 'Next generation content' in Options -> Display.
--
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=38040
Bug ID: 38040
Summary: Cubic Castles: fog effect doesn't work properly
Product: Wine
Version: 1.7.36
Hardware: x86
URL: http://ccdownload.blob.core.windows.net/ccwindows/Cubi
cCastlesWindowsSetup.exe
OS: Linux
Status: NEW
Keywords: download
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: gyebro69(a)gmail.com
Distribution: ---
Created attachment 50675
--> https://bugs.winehq.org/attachment.cgi?id=50675
screenshot
The distance fog effect isn't rendered properly and almost everything is white
in the game. Only the HUD, character names and the chat window is visible.
The same problem with Wine 1.4, 1.6 etc. Native d3dx9* libraries don't change
the picture at all. Disabling GLSL doesn't help either.
Terminal output:
fixme:heap:RtlSetHeapInformation (nil) 1 (nil) 0 stub
fixme:win:EnumDisplayDevicesW ((null),0,0x33f7f8,0x00000000), stub!
fixme:d3d:wined3d_check_device_format_conversion wined3d 0x139430, adapter_idx
0, device_type WINED3D_DEVICE_TYPE_HAL, src_format WINED3DFMT_B8G8R8X8_UNORM,
dst_format WINED3DFMT_B8G8R8X8_UNORM stub!
err:ole:CoCreateInstance apartment not initialised
fixme:g711:G711_StreamSize
err:d3d:wined3d_debug_callback 0x172be8: "GL_INVALID_VALUE error generated.
Width and height must not be negative.".
err:d3d:scissorrect >>>>>>>>>>>>>>>>> GL_INVALID_VALUE (0x501) from glScissor @
state.c / 4972
...
The last lines are repeating over and over.
Fedora 21
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.
https://bugs.winehq.org/show_bug.cgi?id=56261
Bug ID: 56261
Summary: Emperor: Rise of the Middle Kingdom - Flickering of
GUI elements in some sections of the main menu
Product: Wine
Version: 9.1
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: nikolas.gur(a)stud.uni-due.de
Distribution: ---
Created attachment 75975
--> https://bugs.winehq.org/attachment.cgi?id=75975
flickering in mission briefing
Happens both with the demo and full version from GOG.com. Demo available from
https://www.fileplanet.com/archive/p-21075/Emperor-Rise-of-the-Middle-Kingd…
sha1sum si_emperor_demo.exe
212e8ee336207f273fe1e8c737c1a32146f3bd66 si_emperor_demo.exe
In the main menu, some items of menus are constantly flashing and are not
rendered properly. This does not seem to affect the game itself.
Steps to reproduce:
1) Start the demo. The screen was completely black with nothing to be seen
expect of the mouse cursor, so I had to press F5 and drag the window to get the
game to render
2) Press "Single Player Campaign"
3) Press "Choose Zodiac Animal". There should be now flickering of the GUI
elements
I have seen Bug 56119 (https://bugs.winehq.org/show_bug.cgi?id=56119), but it
seems to be a different issue. Bug 56119 is about invisible buttons, this is
about constant flickering of elements (not only buttons).
--
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=28362
Summary: mshtml/events.ok is flaky, times out sometimes on some
machines?
Product: Wine
Version: 1.3.28
Platform: x86
OS/Version: Linux
Status: NEW
Severity: normal
Priority: P2
Component: mshtml
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: dank(a)kegel.com
I just had a timeout on mshtml/events.ok.
http://test.winehq.org/data/tests/mshtml:events.html shows a number of
timeouts on at least two windows machines, so I may not be alone.
My log showed
../../../tools/runtest -q -P wine -M mshtml.dll -T ../../.. -p
mshtml_test.exe.so events.c && touch events.ok
...
fixme:mshtml:nsURI_EqualsExceptRef (0x20cc770)->(0x1799d8 0x33efb4)
fixme:mshtml:nsHttpChannelInternal_SetDocumentURI (0x1dec0a8)->()
fixme:mshtml:HttpNegotiate_GetRootSecurityId (0x17ab88)->(0x33efdc 0x33efac 0)
and then hung for 20 minutes until buildbot killed it.
This was with WINEDEBUG=warn+heap, if it matters, and the machine it
happened on was
os: Ubuntu 10.04.3 LTS, 2.6.32-33-generic, pulseaudio
0.9.21-63-gd3efa-dirty, Advanced Linux Sound Architecture Driver Version
1.0.21.
ram: 3212 MB
cpu: Intel(R) Core(TM) i7 CPU 920 @ 2.67GHz
gpu: GeForce GT 240/PCI/SSE2 3.2.0 NVIDIA 195.36.24
--
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=56270
Bug ID: 56270
Summary: Alan Wake 2 Lutris wine-ge-8-25
Product: Wine
Version: unspecified
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: martinkubanyi1992(a)gmail.com
Distribution: ---
Created attachment 75988
--> https://bugs.winehq.org/attachment.cgi?id=75988
aw2 crash log
Hey,
So im trying to run Alan Wake 2 non epic verions with Lutris wine 8-25 on steam
deck, it actualy works based on some tutorials from internet, however due to
low FPS im trying to implement moded FSR 3 frame generations (it works on
windows 11 steam deck).
when i install the mod files and implement variables to start the mod it runs
console same as on windows and then crash.
Any advices what should i try ? on windows it works perfectly i just tested it,
however i dont want windows on my steam deck.
pls find 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.
https://bugs.winehq.org/show_bug.cgi?id=56267
Bug ID: 56267
Summary: Cannot create wineprefix on loop device ?
Product: Wine
Version: 9.0
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: larina3315(a)tutanota.com
Distribution: ---
Created attachment 75983
--> https://bugs.winehq.org/attachment.cgi?id=75983
error logs
Hello, I have created a loop device to store my wineprefixes in. However, wine
does not work with it.
How I created it :
```
dd if=/dev/zero of=loop.img bs=100M count=50
udisksctl loop-setup -f loop.img
```
Then formatted it as NTFS using gnome-disks.
It is properly detected as NTFS, I can copy-paste files in GNOME Files to and
from the mounted loop device. And yet wine apparently cannot create a
wineprefix on it.
wine --version returns 9.0 (Staging).
I checked the permissions for the loopdevice/mounted partition and it was fine
too.
Do note that I am running wine inside of a toolbox container, but just to rule
out that this wasn't a Wine 9 or toolbox container issue, I downloaded
org.winehq.Wine stable 23.08 from flathub, gave it --filesystem=host
permission, changed the envvar for WINEPREFIX to /run/media/$USER/USBa and it
gave me the same exact error, USBa is a physical USB drive formatted as exFAT.
--
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=56043
Bug ID: 56043
Summary: Native Wayland Touchpad scroll doesn't work
Product: Wine
Version: 9.0-rc2
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: capybaraserene(a)gmail.com
Distribution: ---
Native Wayland is working almost perfect for several of my apps for the first
time.
Great job! It's almost perfect now except touchpad scrolling doesn't work.
WineHQ: wine-devel64-9.0.rc2-1.1.x86_64
Fedora 39 GNOME Wayland
XWayland: Touchpad scroll works
===============================
* DISPLAY=:0
* wine explorer.exe
* two finger scroll works
Native Wayland: Touchpad scroll doesn't work
============================================
* regedit HKEY_CURRENT_USER\Software\Wine\Drivers\Graphics x11,wayland
* unset DISPLAY
* wine explorer.exe
* two finger scroll doesn't work
--
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=56263
Bug ID: 56263
Summary: KeeperFX freezes after a certain amount of time played
Product: Wine
Version: 0.9.
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: zaggynl(a)disroot.org
Distribution: ---
Report at the keeperfx github: https://github.com/dkfans/keeperfx/issues/2690
Playing at a higher resolution seems to cause the freeze to occur sooner.
Let me know if I can test anything specific.
--
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=41731
Bug ID: 41731
Summary: vb custom control not work
Product: Wine-staging
Version: 1.9.23
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: lokesh.bhandari(a)enjayworld.com
CC: erich.e.hoover(a)wine-staging.com, michael(a)fds-team.de,
sebastian(a)fds-team.de
Distribution: ---
I have a visual basic 6 base application. In application enter key will go
cursor to next field in windows and in backspace will go to cursor to previous
field in windows. But in wine-staging 1.9.23 and all other version this
functionality not work. So please suggest me for this. Download link is below
for application.
http://piracyfreeos.org/partner/down.php
log for application is
fixme:winediag:start_process Please report bugs at http://bugs.wine-staging.com
(instead of winehq.org).
fixme:ntoskrnl:IoGetConfigurationInformation partial stub
fixme:ole:RemUnknown_QueryInterface No interface for iid
{00000019-0000-0000-c000-000000000046}
fixme:ole:RemUnknown_QueryInterface No interface for iid
{00000019-0000-0000-c000-000000000046}
--
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=42493
Bug ID: 42493
Summary: Kritika Online startup fails (Xigncode problem?)
Product: Wine
Version: 2.1
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: wyrex(a)openmailbox.org
Distribution: ---
Created attachment 57360
--> https://bugs.winehq.org/attachment.cgi?id=57360
game launch from patcher
Kritika Online MMO freezes at startup. Game patces succesfully in 32-bit prefix
with ie7 installed. When I click "Game Start" empty game window opens and after
10 seconds Xigncode flashes in bottom corner. Then only this message spams
continously until I forcekill it.
fixme:virtual:get_section_name (0x348,0x340000,0x33ba48,528,0x33ba44):
semi-stub
--
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=56264
Bug ID: 56264
Summary: DesktopId Crashed wend open (Certsign token - cloud)
Product: Wine
Version: unspecified
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: jp1183(a)gmail.com
Distribution: ---
Created attachment 75979
--> https://bugs.winehq.org/attachment.cgi?id=75979
Error log
DesktopId Crashed wend open (Certsign token - cloud)
--
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=56262
Bug ID: 56262
Summary: OpenGL 3+ applications don't work on mac os
Product: Wine
Version: 9.0
Hardware: x86-64
OS: MacOS
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: winemac.drv
Assignee: wine-bugs(a)winehq.org
Reporter: markos.theocharis2009(a)gmail.com
I have tried to run some applications utilizing OpenGL 3.x or higher, all
internally using GLFW, and none of them appear to be working. If I use an
application that uses OpenGL 2.x it works fine without any errors.
GLFW error 65542: WGL: Failed to initialize OpenGL context
From my own investigation something is wrong with the winemac.drv WGL
implementation but I don't have the experience to pinpoint the issue.
--
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=55039
Bug ID: 55039
Summary: Touhou 12.3 : specific attack randomly causes online
desync
Product: Wine
Version: 8.9
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: minor
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: riyu12383(a)gmail.com
Distribution: ---
Created attachment 74605
--> https://bugs.winehq.org/attachment.cgi?id=74605
Game replay file, showing the chain attack causing desync
--The game
I already presented this game with it's download link in this issue :
https://bugs.winehq.org/show_bug.cgi?id=54916
--The bug
This game is a fighting game, which is supposed to be deterministic. In online
game, there's no main server, the 2 opponents only receive the input of the
other player directly from each others.
A specific attack (Remilia's chain gang) randomly behave abnormally on Linux,
the attack's collision boxes aren't generated, thus altering the flow of the
game, de-syncing the game in online.
The attack consist of a metal chain, which appears chain link by chain link,
following the other player trying to grab him. This attack seems slightly more
complex to implement than the others.
When bugged, the attack seems to be mixed with another variant of it, where the
chain is shorter and the collision boxes are supposed to appear when the chain
disappears.
Usually in other games similar issues, online desync is resolved by installing
Microsoft visual redistributable, but here it doesn't solve the issue.
This bug is random, even with the same wine version it still occurs randomly on
the same replay file.
--Replay file
Here attached is a replay file, to be put in the "replay" folder inside the
game folder.
Going to the "replay" menu in the main game menu, you can replay a game.
To directly see the collision boxes, please remove the ";" before the line
"ReplayInputView+=" in the SWRSToys.ini file, and launch the game with
WINEDLLOVERRIDES="d3d9=n,b" to load mods. When replaying the game, press F4 to
see the collision boxes.
Beside the initial chain summoning, the chain should always instantly get
collision boxes.
If the bug occurs, the player attack will miss the other player, and will after
likely be too far to reach the other player ever again with the chain.
--Tried regression test
This issue is not a regression, the bug has been known in the game community
for ages.
But I observed on my machine a more frequent occurrence in modern wine builds.
This might likely be an illusion of mine based on coincidence, as the bug is
extremely random and I don't have a clear way to separate good and bad in the
bisection, as the bug will always occurs with given time on any builds.
My first try led me to 27665f35e4da13bac1e4dd8948a65f484c9dadfa, but with
further testing it actually didn't really had an impact, but 2 commits later at
40b7c3e89a95d6ccb190b234d4ad13b3a8304495 it seems way more frequent, but I'm
not even sure if it's this one or the commit before.
I still believe it is unrelated to the actual issue origin, and even might just
be an illusion/coincidence of my own.
--
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=56242
Bug ID: 56242
Summary: memoQ Crossover installs but refuses to run
Product: Wine
Version: 8.21
Hardware: Other
OS: MacOS
Status: UNCONFIRMED
Severity: major
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: pjloc(a)hotmail.com
Created attachment 75949
--> https://bugs.winehq.org/attachment.cgi?id=75949
backtrace displayed in Crossover
I'm trying to install memoQ 8.7.19 or more recent using Codeweavers Crossover.
Dependecies preinstalled:
The Kitchen Sink
gdiplus.dll (was reported as missing in previous backtrace, now it no longer
shows up as missing, so it's not the current blocker).
I would really like to have this software running but I can't figure out how.
The software installs several apps in the same bottle (one is a license
manager).
Thanks!!!
--
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=42596
Bug ID: 42596
Summary: The Secret World: Shadows Render Incorrectly
Product: Wine-staging
Version: unspecified
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: trivial
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: padreadamo(a)gmail.com
CC: erich.e.hoover(a)wine-staging.com, michael(a)fds-team.de,
sebastian(a)fds-team.de
Distribution: ---
Created attachment 57537
--> https://bugs.winehq.org/attachment.cgi?id=57537
Incorrect shadow rendering
Shadows do not render correctly in "The Secret World," an MMORPG that is
getting a relaunch later this year, using Staging (CSMT) or not. There are not
settings (in the game) that change the outcome of the shadows not rendering
correctly. In addition, this was checked using several different GPUs and CPUs
to rule-out possible hardware (AMD CPU vs Intel CPU and AMD 7970/AMD R270m).
This game uses the Dreamworld engine which is also used in "Age of Conan."
The attachment shows an in-game screenshot of the shadow rendering. This is my
first bug report here.
Link to download the client: http://cdn.funcom.com/tsw/live/setup.exe
--
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=55626
Bug ID: 55626
Summary: Azumanga Fighter: opening video issue, sound-only with
white screen
Product: Wine
Version: 8.16
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: minor
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: riyu12383(a)gmail.com
Distribution: ---
Created attachment 75167
--> https://bugs.winehq.org/attachment.cgi?id=75167
Log file of the game
- The game
This is a very old fan-game : https://archive.org/details/azumangafighter.7z
The executable is "azfight.exe" but the direct3D version can be change in
"config.exe".
-The bug
The game opens with a brief jingle and then the opening video(data/op.mpg) is
played, however only the sound plays, and the game's window remains entirely
white.
On a side-note, as I use arch linux, I'm using GST_PLUGIN_SYSTEM_PATH=... with
wine-ge's runtime to get the 32bits version of gst, avoiding a MSI
initialization error caused by missing mpeg1 codecs. Installing Media
Foundation didn't change anything either.
--
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=54211
Bug ID: 54211
Summary: Wine dependency issue on Aarch64 ubuntu kinetic
Product: Wine
Version: unspecified
Hardware: aarch64
OS: Linux
Status: UNCONFIRMED
Severity: major
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: engagehitsmail(a)gmail.com
Distribution: ---
Created attachment 73754
--> https://bugs.winehq.org/attachment.cgi?id=73754
Wine dependency issue
The installation of wine is not successful in linux aarch64 with Ubuntu kinetic
OS.
After following the instructions from the following wiki, the installation
fails due to dependency.
Wiki: https://wiki.winehq.org/Ubuntu
How to replicate?
Install Ubuntu kinetic OS in Aarch64 and run the commands as mentioned in the
wiki.
Oracle is providing free host and I tried on that host.
https://www.youtube.com/watch?v=NKc3k7xceT8
Issue with Dependencies required:
wine-stable:i386 : Depends: libc6:i386 (>= 2.34) but it is not installable
Depends: wine-stable-i386:i386 (= 7.0.1~kinetic-1) but it
is not going to be installed
Please find the attachment for logs.
--
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=52219
Bug ID: 52219
Summary: Java 8 offline installer crashes
Product: Wine
Version: 6.23
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: joseskvolpe(a)gmail.com
Distribution: ---
Created attachment 71291
--> https://bugs.winehq.org/attachment.cgi?id=71291
Crash backtrace
Java 8 installer displays, but crashes after clicking "Next" button
Procedure:
1 - Download Java offline installer and open it
2 - Click Next
Download: https://www.java.com/pt-BR/download/manual.jsp
jre-8u311 were tested the time this bug report is being written. Both 64-Bits
and 32-Bits versions has the same issue
64-Bits SHA1: 1ff669c31b79955775026a58bb2952daf204aa53
32-Bits SHA1: 10e428c0b52e89feb71c485bc4098768ff39c390
--
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=51531
Bug ID: 51531
Summary: DrMingw problem
Product: Wine
Version: 6.13
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: vladimir.kokovic(a)gmail.com
Distribution: ---
Although I installed DrMingw, wine doesn't call him if the exception occurs.
d: && cd \drmingw-0.9.3-win64\bin && drmingw -i -v
Dr.Mingw has been installed as default application debugger
wine64 version=wine-6.13-173-g04d52eb83fa
/mnt/WD-Elements-25A1/src/wine-git/install64/system.reg
...
[Software\\Microsoft\\Windows NT\\CurrentVersion\\AeDebug] 1623820558
#time=1d7626eb12154b6
"Auto"="1"
"Debugger"="\"d:\\drmingw-0.9.3-win64\\bin\\drmingw.exe\" -p %ld -e %ld -v"
...
[Software\\Wow6432Node\\Microsoft\\Windows NT\\CurrentVersion\\AeDebug]
1623820558
#time=1d7626eb121692e
"Auto"="1"
"Debugger"="\"d:\\drmingw-0.9.3-win64\\bin\\drmingw.exe\" -p %ld -e %ld -v"
...
/asoft-src/ispp-64/linux/cross-compile/llvm-mingw/ispp64-llvm-mingw-start.sh
0110:fixme:process:CmdBatNotification 1
0110:fixme:process:CmdBatNotification 0
[root@vlada-kuci tmp 00:41:04]$ wine: Unhandled division by zero at address
000000014000F806 (thread 0120), starting debugger...
0120:err:seh:start_debugger Couldn't start debugger L"" (2)
Read the Wine Developers Guide on how to set up winedbg or another debugger
wine: Unhandled page fault on write access to 0000000000000000 at address
00007F96D844E9BB (thread 0070), starting debugger...
0070:err:seh:start_debugger Couldn't start debugger L"" (2)
Read the Wine Developers Guide on how to set up winedbg or another debugger
Vladimir Koković, DP senior(70), Serbia, Belgrade, 28.July 2021
--
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=56229
Bug ID: 56229
Summary: winxp64 is a valid Windows 32-bit version
Product: Wine
Version: 9.0-rc3
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: jkfloris(a)dds.nl
Distribution: ---
Starting with Wine 9.0-r3, it is possible to set Windows XP 64 for a 32-bit
prefix.
$ WINEPREFIX=/home/floris/wine-prefix/test-32 WINEARCH=win32
/opt/wine-devel/bin/wineboot
$ WINEPREFIX="/home/floris/wine-prefix/test-32" /opt/wine-devel/bin/wine
winecfg /?
Usage: winecfg [options]
Options:
[no option] Launch the graphical version of this program.
/v Display the current global Windows version.
/v version Set global Windows version to 'version'.
/? Display this information and exit.
Valid versions for 'version':
win11 Windows 11
win10 Windows 10
win81 Windows 8.1
win8 Windows 8
win2008r2 Windows 2008 R2
win7 Windows 7
win2008 Windows 2008
vista Windows Vista
win2003 Windows 2003
winxp64 Windows XP 64
winxp Windows XP
win2k Windows 2000
winme Windows ME
win98 Windows 98
win95 Windows 95
nt40 Windows NT 4.0
nt351 Windows NT 3.51
win31 Windows 3.1
win30 Windows 3.0
win20 Windows 2.0
$ WINEPREFIX="/home/floris/wine-prefix/test-32" /opt/wine-devel/bin/wine
winecfg /v winxp64
$ WINEPREFIX="/home/floris/wine-prefix/test-32" /opt/wine-devel/bin/wine
systeminfo
Host Name: JESSICA
OS Name: Microsoft Windows XP Professional x64 Edition
OS Version: 5.2.3790
OS Manufacturer: The Wine Project
OS Configuration: Standalone Workstation
OS Build Type: Multiprocessor Free
Registered Owner:
Registered Organization:
Product ID: 12345-oem-0000001-54321
Original Install Date: 21-1-2024, 12:02:58
System Boot Time: 21-1-2024, 12:06:43
System Manufacturer: System manufacturer
System Model: System Product Name
System Type: x86 based PC
...
--
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=56220
Bug ID: 56220
Summary: Low FPS in Mirror's Edge
Product: Wine
Version: 9.0
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: zwoho55(a)protonmail.com
Distribution: ---
FPS is around 5-10 and cursor movement is very slow/choppy.
This is with alpine linux's wine 9.0 package, so "experimental wow64 mode" and
musl.
This happens regardless of whether physx is enabled or disabled in the game's
settings.
--
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=56211
Bug ID: 56211
Summary: Wine doesn't set dll path properly when more than one
dll with the same name is present
Product: Wine
Version: 9.0-rc5
Hardware: x86-64
OS: Linux
Status: NEW
Severity: normal
Priority: P2
Component: ntdll
Assignee: wine-bugs(a)winehq.org
Reporter: dark.shadow4(a)web.de
Distribution: ---
Found while investigating bug 56209. I'm using MR 4518 (important later).
Using msvbvm50.exe from winetricks (vb5run), the exe unpacks its own
ADVPACK.DLL in its current working directory. However, due to the loading
order, wine still loads its builtin advpack.dll
However, the loader still sets the nt_path to the originally requested DLL, not
the one that actually gets loaded. So the wineserver has mapping->fd
unix_path =
/home/fabian/Programming/Wine/wine/dlls/advpack/i386-windows/advpack.dll
nt_path = /home/fabian/.wine/drive_c/users/fabian/Temp/IXP010.TMP/ADVPACK.DLL
When entering virtual_map_builtin_module we get the filename from the mapping
with line
> filename = (WCHAR *)(image_info + 1);
This is how you can easiest test that discrepancy. When using the GDB
integration MR, that filename is passed to GDB, so it never loads the right
symbols for advpack.dll.
--
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=53591
Bug ID: 53591
Summary: Raspberry Pi OS Bullseye arm64 running 32-bit windows
app (AirMail)
Product: Wine
Version: unspecified
Hardware: aarch64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: mgrushinskiy(a)gmail.com
Distribution: ---
Created attachment 72975
--> https://bugs.winehq.org/attachment.cgi?id=72975
install script for everything
I'm installing box86 and wine on Raspberry Pi Bullseye arm64 using
attached script.
I get the following error trying to run the app (AirMail):
WINEPREFIX=${HOME}/wine-air wine/bin/wine wine-air/drive_c/Program\
Files/Airmail/Airmail3.exe
Box86 with Dynarec v0.2.3 3a7cc57f built on Jul 9 2021 17:31:35
Box86 with Dynarec v0.2.3 3a7cc57f built on Jul 9 2021 17:31:35
Box86 with Dynarec v0.2.3 3a7cc57f built on Jul 9 2021 17:31:35
Box86 with Dynarec v0.2.3 3a7cc57f built on Jul 9 2021 17:31:35
0024:err:winediag:nodrv_CreateWindow Application tried to create a window, but
no driver could be loaded.
0024:err:winediag:nodrv_CreateWindow The explorer process failed to start.
0024:err:secur32:process_attach Failed to load gnutls_session_channel_binding
0024:err:secur32:SECUR32_initSchannelSP no schannel support, expect problems
wine: Unhandled exception 0x0eedfade in thread 24 at address 7B0110D6 (thread
0024), starting debugger...
Box86 with Dynarec v0.2.3 3a7cc57f built on Jul 9 2021 17:31:35
winedbg detected, not launching it!
0024:err:seh:start_debugger Couldn't start debugger L"winedbg --auto 32 140"
(1359)
Read the Wine Developers Guide on how to set up winedbg or another debugger
What did I do wrong? I've seen reports from other people that that app
works on Raspberry Pi Buster with box86.
Thanks
--
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=56241
Bug ID: 56241
Summary: wine 9.0 --enable-archs=i386,x86_64 run 32-bit
cubemap.exe with dxvk 2.3 out of memory
Product: Wine
Version: 9.0-rc5
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: winevulkan
Assignee: wine-bugs(a)winehq.org
Reporter: szl19921231(a)gmail.com
Distribution: ---
stderr: 019c:fixme:vulkan:wine_vkMapMemory2KHR returned mapping 0x752ab99000
does not fit 32-bit pointer
stderr: err: DxvkMemoryAllocator: Mapping memory failed with
VK_ERROR_OUT_OF_HOST_MEMORY
stderr: err: DxvkMemoryAllocator: Memory allocation failed
wine run on mesa turnip freedreno.
dxvk+turnip out of memory but zink+turnip is ok
--
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=56192
Bug ID: 56192
Summary: SegRegRevert.patch, the patch that makes Roblox work
with the anti-cheat doesn't work on any version of
wine.
Product: WineHQ Bugzilla
Version: unspecified
Hardware: x86-64
OS: FreeBSD
Status: UNCONFIRMED
Severity: blocker
Priority: P2
Component: bugzilla-unknown
Assignee: wine-bugs(a)winehq.org
Reporter: gamer100dev(a)gmail.com
CC: austinenglish(a)gmail.com
Created attachment 75899
--> https://bugs.winehq.org/attachment.cgi?id=75899
segregrevert.patch, the patch that makes the anti-cheat work.
I'm currently using wine 9.0 rc4, though I have tried lot's of version of wine
past 8.0+. Wine 8.0 is the minimum for Roblox to work, I suspect that the patch
itself might be incompatible, either with the Unix signals, or with some other
parts. Currently, when launching the RobloxBetaPlayer.exe, it give me this
error:
0248:fixme:ntdll:NtRaiseHardError c0000005 stub
and the app proceeds to give me a error while launching, stating that there was
a unexpected error. Options being, creating a memory dump, which fails.
I will attach the patch, maybe there could be some adaptations for it to work
on the FreeBSD version for wine, this patch does not require the staging
patchsets.
--
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=56245
Bug ID: 56245
Summary: Versailles II: Videos not played (Missing decoder)
Product: Wine
Version: 9.0
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: memax(a)gmx.fr
Distribution: ---
Created attachment 75951
--> https://bugs.winehq.org/attachment.cgi?id=75951
logs
Game:
Versailles II: Testament of the King
French CD version with official patches applied (1.0.4.0 & 1.0.4.3)
OS:
Ubuntu 22.04.3 LTS 64bit
gstreamer1.0-plugins-bad:i386 and gstreamer1.0-plugins-ugly:i386 are installed
Wine:
wine-9.0
WINEARCH=win32
The game starts, but the FMVs (which are .wmv files) are not played.
In the logs, there are several "winegstreamer error":
"Missing decoder: Windows Media Video 8 Screen"
"Missing decoder: Windows Media Audio 8"
--
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=56125
Bug ID: 56125
Summary: GTA San Andreas
Product: Wine
Version: 8.0.2
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: minor
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: herobrine.cyberdemon(a)gmail.com
Distribution: ---
The game gets stuck right before the intro animation (the one with the Rockstar
logo) and doesn't start it - workaround is to press the default key (Enter) to
skip that animation, after that everything works just fine. First encountered
it some months ago when I installed the game on Linux - or it could have been
many, it's possible Wine upgraded from 7.X to 8.X during the time. I installed
the game (DVD version, so 2.0 if I'm not mistaken) normally, don't remember
having issues other than that one. Today I got to mod the game, so had to
update to a V1.0 with crack - I know WINE doesn't support cracked/modified
software, but the issue remains the same and no other issues appeared so its
either in WINE, or I screwed up installing WINE or the game in the first place,
or its nouveau.
--
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=43353
Bug ID: 43353
Summary: Planet Skies
Product: Wine
Version: 1.7.3
Hardware: Other
OS: Mac OS X
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: katyaholubitsky11(a)gmail.com
Created attachment 58700
--> https://bugs.winehq.org/attachment.cgi?id=58700
the backtrace is an attachment that shows up whenever i try to use OpenGL or
Direct3G.
When i try to click OpenGL,it wouldn't let me play,the screen goes black and
this popup shows up,
and when i try to use Direct3G, the same popup shows up.
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=33446
Bug #: 33446
Summary: Left 4 Dead: Player outlines may appear distorted
Product: Wine
Version: 1.5.28
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: directx-d3d
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: CFSworks(a)gmail.com
Classification: Unclassified
Created attachment 44258
--> http://bugs.winehq.org/attachment.cgi?id=44258
Distorted player outlines: UseGLSL=enabled, shader detail level = very high
In Left 4 Dead, with the shader detail level set to high/very high, and
UseGLSL=enabled, there is some distortion in the outlines of characters through
walls.
At medium/low shader detail, the outlines appear as they should. Likewise,
setting UseGLSL=disabled corrects the image, so this may be a bug in Wine's
GLSL generator.
--
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=55902
Bug ID: 55902
Summary: winewayland.drv: GNOME, cannot resize a window by
touchpad double-tap
Product: Wine
Version: 8.17
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: bigfoothart(a)gmail.com
Distribution: ---
winewayland.drv: GNOME, cannot resize a window by touchpad double-tap.
Judging by a cursor when double-tapping it expects the user to drag the window,
but it should resize the window.
Mouse double-click works as expected.
KDE and Weston not affected.
--
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=38275
Bug ID: 38275
Summary: DeferWindowPos accept NULL HWND and fail at
EndDeferWindowPos()
Product: Wine
Version: unspecified
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: user32
Assignee: wine-bugs(a)winehq.org
Reporter: rozhuk.im(a)gmail.com
Distribution: ---
http://source.winehq.org/git/wine.git/blob/e882cdf55cc004b5ffb7b85d912b4733…
DeferWindowPos( HDWP hdwp, HWND hwnd...
does not check: hwnd != NULL (windows does!)
and later EndDeferWindowPos() fail in
http://source.winehq.org/git/wine.git/blob/e882cdf55cc004b5ffb7b85d912b4733…
X11DRV_SetWindowPos(...)
...
763 /* Fix redundant flags */
764 if (!fixup_flags( winpos )) return FALSE;
fixup_flags()
...
WND *wndPtr = WIN_GetPtr( winpos->hwnd );
382 BOOL ret = TRUE;
383
384 if (!wndPtr || wndPtr == WND_OTHER_PROCESS)
385 {
386 SetLastError( ERROR_INVALID_WINDOW_HANDLE );
387 return FALSE;
388 }
Miranda NG was affected.
Workaround:
if (NULL != hwnd) /* Wine fix. */
hdwp = DeferWindowPos(hdwp, hwnd...);
--
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=46943
Bug ID: 46943
Summary: Theme Park World crashes at startup
Product: Wine
Version: 4.4
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: haakobja(a)gmail.com
Distribution: ---
Created attachment 64065
--> https://bugs.winehq.org/attachment.cgi?id=64065
Log with exception
Hi,
I'm trying to get Theme Park World to start with Wine. I've set the Windows
version to Windows 2000 (as stated in bug 37802), and the game is updated to
version 2.0.
The copy protection seems to work, but after the initial splash screen is gone
I immediately get the following exception:
> 0035:err:seh:raise_exception Unhandled exception code c0000005 flags 0 addr 0x7b46b76e
When I try with the no-cd crack, the game runs as it should.
--
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=56258
Bug ID: 56258
Summary: [Sway] winewayland.drv: Inconsistency between XWayland
and Wayland: 'Detroit Become Human' + 'Ultrawide Mod'
makes the window disappear
Product: Wine
Version: 9.1
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: grabbend(a)hotmail.com
Distribution: ---
# Overview
This issue cannot be reproduced with XWayland in Sway.
When using the new Wayland driver with Detroit Become Human game, the game
window will disappear if these 2 conditions are meet:
- The game is using 'Fullscreen' mode (before proceeding to the next step).
- Detroit Become Human Ultrawide injector app is launched
(community.pcgamingwiki.com/files/file/1721-detroit-become-human-ultrawide-m…).
# Stacktrace
There are no direct logs of what's going wrong.
However, this exact error message shows up:
* At step 4 in 'Reproduction' section (when the game window disappears).
* At step 6 in 'Workaround' section (after successful injection).
> 02c0:err:sync:RtlpWaitForCriticalSection section 0000000004046428 (null) wait timed out in thread 02c0, blocked by 02a8, retrying (60 sec)
When inspecting active windows in Sway, it never goes away which means the
game's process never crashes - it's just invisible:
> $ swaymsg -t get_tree
> #129: workspace "1"
> #128: con "(null)" (xdg_shell, pid: 17939)
# Setup
*) [WINE] Most straightforward approach is to use 'Bottles' app but this can
also be reproduced with 'Lutris' and 'Steam'.
*) [WINE] Use WINE 9.1 runner.
*) [WINE] Make sure Wayland driver is enabled in Registry & DISPLAY=
environment variable is empty.
# Reproduction
1) [Sway Workspace 1] Launch 'Detroit Become Human' game.
2) [Game] Make sure the game is using 'Fullscreen' mode in the options menu.
3) [Sway Workspace 2] Launch Detroit 'Become Human Ultrawide 0.9.9' external
app (injector).
4) [Sway] Switch from Sway Workspace 2 to Sway Workplace 1 (where the game
window is).
*) [Game] Game audio can still be heard but you can't see the game window (it's
invisible).
# Workaround
1) [Sway Workspace 1] Launch 'Detroit Become Human' game.
2) [Game] Make sure the game is using 'Borderless Window' or 'Windowed' mode in
the options menu.
3) [Sway Workspace 2] Launch Detroit 'Become Human Ultrawide 0.9.9' external
app (injector).
4) [Sway] Switch from Sway Workspace 2 to Sway Workplace 1 (where the game
window is).
5) [Game] Press 'F9' to activate the injector, then wait for UI elements to
resize.
6) [Game] Change the video mode to 'Fullscreen'.
*) [Game] The game populates the entire screen without blackbars and works as
intended without crashing.
--
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=56257
Bug ID: 56257
Summary: ArcheAge r566361-r592955 fail to load game DLL due to
hooked LdrLoadDll calling GetModuleHandleA
Product: Wine
Version: 9.1
Hardware: x86-64
URL: https://archive.org/download/arche-age-24-25-171-bin-6
4/ArcheAge-24-25-171-bin64.zip
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: kernel32
Assignee: wine-bugs(a)winehq.org
Reporter: eniw(a)ardel.eu
Distribution: ---
Created attachment 75969
--> https://bugs.winehq.org/attachment.cgi?id=75969
Patch that sets file_name_AtoW alloc=TRUE for LoadLibraryExA &
GetModuleHandleExA
ArcheAge revisions 566361 to 592955 have enabled an overridden LdrLoadDll which
on first invocation looks up the location of ntdll.dll NtQueryInformationThread
through GetModuleHandleA & GetProcAddress and then memoizes it.
This however means that on first LoadLibraryA call that will use the hooked
LdrLoadDll, the dll name stored in TEB StaticUnicodeString also gets
overwritten by the GetModuleHandleA call made by the hooked loader.
In case of ArcheAge, the name of the DLL that is affected by this is
cryaction.dll
Here is the sequence of actions that I observed by following wine's output:
LoadLibraryA("cryaction.dll")
LoadLibraryExA
file_name_AtoW
(DLL name "cryaction.dll" is copied into TEB)
LoadLibraryExW
load_library
LdrLoadDll (hooked)
GetModuleHandleA("ntdll.dll")
GetModuleHandleExA
file_name_AtoW
(DLL name is overwritten in TEB, now "ntdll.dll")
LdrLoadDll (original)
("ntdll.dll" is loaded instead of "cryaction.dll")
Game revisions newer than 592955 still contain the code, however it has been
disabled by a flag similar to the way it was before 566361, potentially part of
some debug or testing code. The affected binaries are difficult to get hold of
as the official sources will always try to install the latest version on top of
what you already have. I uploaded binaries for minimal reproduction for
revision 566361 (update 25), one version before (update 24, revision 565940)
and the latest at the time of writing (update 171, revision 642866).
To run the binaries successfully, ntdll-Junction_Points from staging needs to
be applied, which seems currently broken and needs fixes I outlined in bug
12401 or symlinks in .REPARSE_POINT directory tree manually repaired after
launching the game for the first time. In addition to that winetricks vcrun2010
may be required.
To start the game, archeage.exe needs certain flags to be present:
bin64-update-25\archeage.exe -t +auth_ip 1.2.3.4 -auth_port 1234 -authtoken
test -lang en_us
Expected result would be a dialog box showing "Failed to load game data!", as
the game data is knowingly omitted from the minimal reproduction.
However with update 25 (566361) binaries, another error is displayed:
"Framework dll is invalid, check your version", which happens when there is no
export "CreateGameFramework" in the found "cryaction.dll" (that got swapped to
"ntdll.dll" at the last possible moment).
Changing file_name_AtoW alloc=TRUE at both LoadLibraryExA and
GetModuleHandleExA did restore the expected behavior for the affected versions.
This fix is also included as a patch. However I am unsure if this is
necessarily the right solution and would like more insight if this is not the
case.
Another question is whether this is a legitimate bug worth fixing. Despite the
high requirements to reproduce this with wine, it used to be enabled in
production builds of the game for around 7 months (2022.03 - 2022.10) with not
so insignificant user base on Windows, currently the code is still present in
binaries, but disabled behind a boolean flag. I think my biggest fear regarding
this is that if this ever gets re-enabled, it would be needed to be looked at
again by which the rollout of the fix would be slow, but it could simply be
another case of YAGNI.
--
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=56255
Bug ID: 56255
Summary: ClassIn Wine Error
Product: Wine
Version: 9.1
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: italiatroller(a)gmail.com
Distribution: ---
Created attachment 75965
--> https://bugs.winehq.org/attachment.cgi?id=75965
classin error while entering classroom
Hi, i'm experiencing this error while entering the classroom in classin using
wine:
--
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=28420
Summary: serious problem in running schrankplaner.exe
Product: Wine
Version: unspecified
Platform: x86
URL: javascript:downloahttp://www.schrankplaner.de/deu/4_Pl
anen&Bestellen/41_GratisSoftware/45_Gratis-Software.ht
ml?PHPSESSID=25bda3c1dc1d0b9440e7c516aaa00b46d('./soft
ware_de/schrankplaner_setup.exe','1')
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: muemarco(a)gmail.com
after installing the program successfully by creating a .verb file and running
it with the command winetricks schrankplaner.verb, the program crashes when I
start it from the wine program list.
--
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=55036
Bug ID: 55036
Summary: UltraISO: EAccessViolation: Access violation in module
COMCTL32.DLL
Product: Wine
Version: unspecified
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: comctl32
Assignee: wine-bugs(a)winehq.org
Reporter: audvare(a)gmail.com
Distribution: ---
Created attachment 74599
--> https://bugs.winehq.org/attachment.cgi?id=74599
screenshot
Getting this issue as soon as I click 'Continue to Try' (for the trial). I get
two dialogs both of which have access violations in COMCTL32.DLL. Then the
program exits.
Using wine-vanilla (Gentoo package) 8.10.
--
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=55134
Bug ID: 55134
Summary: Cannot run wineboot in 32-bit prefix, unhandled page
fault on read access
Product: Wine
Version: 8.10
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: audvare(a)gmail.com
Distribution: ---
Created attachment 74689
--> https://bugs.winehq.org/attachment.cgi?id=74689
crash log
I am using wine-staging 8.10 on Gentoo with the following USE flags and
building PEs with a MinGW toolchain. I definitely have 32-bit support enabled.
X alsa cups fontconfig gecko gphoto2 gstreamer mingw mono netapi nls opencl
opengl osmesa pcap perl pulseaudio samba sdl ssl strip truetype udev udisks
unwind usb v4l vulkan wayland xcomposite xinerama -capi -crossdev-mingw
-custom-cflags -dos -kerberos -llvm-libunwind -scanner -selinux -smartcard
I run with the following env (where WINEPREFIX is a directory that does not
exist):
WINEPREFIX=/home/tatsh/.local/share/wineprefixes/a
WINEARCH=win32
When I run `wineboot -i`, it just crashes:
wine: Unhandled page fault on read access to FFFFFFFF at address 688A1FF0
(thread 0138), starting debugger...
I have to use SIGKILL to get these processes to stop.
--
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=10791
Summary: RPG Maker XP 10.2a: Does not play Background Music (BGM)
and Background Sounds (BGS)
Product: Wine
Version: 0.9.50.
Platform: Other
OS/Version: other
Status: UNCONFIRMED
Severity: minor
Priority: P2
Component: wine-directx-dsound
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: hen.asraf(a)gmail.com
Background Music and Background Sounds cannot be played with Wine.
It is possible to play them in your own media player and such, and then just
choose to use the preferred file to be played when playing. It will play on
Windows machines, only it won't under Wine.
No errors occur, the sound simply does not play.
Sound Effects (SE) and Music Effects (ME) do work.
It might have something to do with the file type and media codec.
--
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=56247
Bug ID: 56247
Summary: Installation fails for inMusic Software Center 1.19.1
setup.exe
Product: Wine
Version: 9.0
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: blocker
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: christopher.jones.wa(a)gmail.com
Distribution: ---
Created attachment 75954
--> https://bugs.winehq.org/attachment.cgi?id=75954
wine output when bug appears
Alesis drum kits software for interfacing with PC. Installation fails, wants to
be run as administrator. Downloaded from the inMusic site.
Attached is the output of the wine command when trying the install.
--
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=54765
Bug ID: 54765
Summary: d2d drawing issues with the program RootsMagic 8 or 9
Product: Wine
Version: 8.4
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: d2d
Assignee: wine-bugs(a)winehq.org
Reporter: sargenthp(a)gmail.com
Distribution: ---
With the version of Wine 8.x RootsMagic 9 is not drawing properly. It might
show the controls, but soon as the cursor is moved into the window the controls
disappear. If you move the window the controls will repaint once in awhile.
Rootsmagic can be downloaded and installed. Installation works fine... But
immediately you will be able to see the results once rootsmagic is opened.
Here are some of the messages I see with some attempt of removing duplicates...
007c:fixme:hid:handle_IRP_MN_QUERY_ID Unhandled type 00000005
0024:fixme:nls:RtlGetThreadPreferredUILanguages 00000038, 000000000011D57C,
0000000000000000 000000000011D5D8
0024:fixme:nls:get_dummy_preferred_ui_language (0x38 0x409 000000000011D57C
0000000000000000 000000000011D5D8) returning a dummy value (current locale)
0024:fixme:d2d:d2d_device_context_DrawGeometry Ignoring stroke style
000000000BD28B50.
0024:fixme:d2d:d2d_device_context_PushLayer iface 000000000BD329A0,
layer_parameters 000000000011E648, layer 000000000BD33470 stub!
0024:fixme:d2d:d2d_text_renderer_DrawGlyphRun Ignoring options 0x2.
0024:fixme:d2d:d2d_device_context_Flush iface 000000000BD26520, tag1
000000000011D8F8, tag2 000000000011D8F0 stub!
0024:fixme:d2d:d2d_device_context_Flush iface 000000000BD336B0, tag1
000000000011D858, tag2 000000000011D850 stub!
0024:fixme:d2d:d2d_device_context_PopLayer iface 000000000BD329A0 stub!
0024:fixme:d2d:d2d_device_context_PushLayer iface 000000000BD329A0,
layer_parameters 000000000011E648, layer 000000000BD2DE50 stub!
0024:fixme:d2d:d2d_device_context_Flush iface 000000000BD33EB0, tag1
000000000011D8F8, tag2 000000000011D8F0 stub!
0024:fixme:d2d:d2d_device_context_Flush iface 000000000BD34160, tag1
000000000011D858, tag2 000000000011D850 stub!
0024:fixme:d2d:d2d_device_context_PopLayer iface 000000000BD329A0 stub!
0024:fixme:d2d:d2d_text_renderer_DrawGlyphRun Ignoring options 0x2.
0024:fixme:d2d:d2d_device_context_PushAxisAlignedClip Ignoring antialias_mode
0.
--
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=38117
Bug ID: 38117
Summary: Fallen Enchantress: map screen is black unless
'ClothMapOnly' option is enabled
Product: Wine
Version: 1.7.36
Hardware: x86
OS: Linux
Status: NEW
Severity: normal
Priority: P2
Component: directx-d3d
Assignee: wine-bugs(a)winehq.org
Reporter: gyebro69(a)gmail.com
Distribution: ---
Created attachment 50801
--> https://bugs.winehq.org/attachment.cgi?id=50801
terminal output
The map screen is black, only some HUD elements can be seen.
The game contains configuration options in ~/My
Games/FallenEnchantress/Prefs.ini
If I set the option 'ClothMapOnly=1' then the map is rendered properly.
The same problem with Wine 1.4/1.6.
Native d3dx9_41 was used to start the game.
Disabling GLSL doesn't help.
Fedora 21
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.
https://bugs.winehq.org/show_bug.cgi?id=46164
Bug ID: 46164
Summary: Graphics blurry/garbled in Unigine Superposition
Product: Wine
Version: unspecified
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: cybermax(a)dexter.no
Distribution: ---
Graphics is blurry/garbled in Unigine Superposition running in "DirectX" or
"OpenGL" mode with "medium" or higher "shader quality".
Setting "shader quality" to "low" seems ok in both OpenGL and DirectX mode.
--
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=56167
Bug ID: 56167
Summary: Unigine Heaven 4.0 DX11 benchmark performance loss on
Nvidia gpu
Product: Wine
Version: 7.2
Hardware: x86-64
URL: https://assets.unigine.com/d/Unigine_Heaven-4.0.exe
OS: Linux
Status: NEW
Keywords: download, performance, regression
Severity: normal
Priority: P2
Component: d3d
Assignee: wine-bugs(a)winehq.org
Reporter: gyebro69(a)gmail.com
CC: hverbeet(a)gmail.com, z.figura12(a)gmail.com
Regression SHA1: 7c844cd3c9c465bdeaf3d98d6da5f2f5e460e650
Distribution: ArchLinux
I'm filing this bug report because the proposed patch by Zeb Figura from bug
#54223 doesn't resolve the performance regression for me in Unigine Heaven DX11
benchmark:
https://gitlab.winehq.org/wine/wine/-/merge_requests/4821
The problem: with current Wine (wine-9.0-rc4-25-g44aa651dc54) there is a
roughly 30% performance drop in the DX11 benchmark compared to that of
Wine-7.1.
The DX9 and OpenGL benchmarks are not affected.
The first commit where the problem appeared for me:
commit 7c844cd3c9c465bdeaf3d98d6da5f2f5e460e650
wined3d: Use the chunk allocator for GL indirect draw buffers.
The settings I'm using in Unigine Heaven 4.0:
Preset: custom
API: DirectX 11
Quality: Low
Tesselation: Disabled
Stereo 3D: disabled
Multi-Monitor: disabled
Anti-aliasing: Off
Full Screen: unchecked
Resolution: 1280X720
This is the result of the DX11 benchmark in wine-9.0-rc4-25-g44aa651dc54:
FPS: 126
Score: 3174
Min FPS: 11.9
Max FPS: 362.3
The benchmark with commit 7c844cd3^:
FPS: 175
Score: 4390
Min FPS: 10.9
Max FPS: 362.9
Tested and reproduced with the following Nvidia drivers:
470.223.02 (legacy branch)
535.43.22 (Vulkan dev)
545.29.06
Please let me know if I should provide debug logs or further tests.
About my current system:
Kernel: Linux 6.6.10-zen1-1-zen [x86_64] @ Arch Linux
X.Org X Server 1.21.1.10
XFCE 4.18 (compositor disabled)
GPU: NVIDIA GeForce GTX 1660 SUPER/PCIe/SSE2 (6 GB)
Memory: 32 GB
CPU: AMD Ryzen 5 5600X 6-Core Processor
Unigine_Heaven-4.0.exe
md5: 2477dcb2d7072b96abc6a1ae447a960c
--
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=56252
Bug ID: 56252
Summary: WeChat 's internal screen shot failed
Product: Wine
Version: 9.1
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: hitbuyi(a)163.com
Distribution: ---
I installed wechat3.9 on Wine8.0.2 in ubuntu20.04m and install
riched20,riched30 via winetricks. Wechat3.9's internal screen shot
function,file send/receive function work well, my graphic card is nvidia GTX
3060
When I upgrade from wine8.0.2 to wine9.0, Wechat3.9's screen shot function
doesn't work well, when starting screening, the whole screnn turn to a black
one, and the green box appeared.
--
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=33053
Bug #: 33053
Summary: Support for dvorak programmer layout.
Product: Wine
Version: unspecified
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: gitterrost4+winehq(a)gmail.com
Classification: Unclassified
Created attachment 43693
--> http://bugs.winehq.org/attachment.cgi?id=43693
Patch to add support for dvorak programmer's layout.
There currently is no support for the dvorak programmer's layout in wine. The
layout can be found here:
http://kaufmann.no/roland/dvorak/index.html
The symptom of this problem is:
In Guild Wars, if I try to bind the key with the ampersand on it (where the 1
would usually be on a standard US-Keyboard) to an action, it just does nothing,
as if i hadn't pressed any key.
The same goes for Diablo III. If I try to bind this key, it says
"!!!MISSING!!!".
Writing in these apps currently works as expected (i.e. in Chats or Messages).
I have altered the File dlls/winex11.drv/keyboard.c, and it kind of works. (see
the attached Patch)
When I press the ampersand-key in the patched version, it registers, but shows
up as "1" in the options dialog. This is no problem for gameplay, it just looks
weird.
--
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=51436
Bug ID: 51436
Summary: Resident Evil 7 has wrong lights/shadows rendering
(OpenGL renderer)
Product: Wine
Version: 6.12
Hardware: x86-64
OS: Linux
Status: NEW
Severity: normal
Priority: P2
Component: directx-d3d
Assignee: wine-bugs(a)winehq.org
Reporter: andrey.goosev(a)gmail.com
Distribution: ---
Created attachment 70290
--> https://bugs.winehq.org/attachment.cgi?id=70290
example
07d8:fixme:d3d:wined3d_context_gl_draw_indirect Ignoring index offset 1224.
07d8:fixme:d3d:wined3d_context_gl_draw_indirect Ignoring index offset 1224.
07d8:fixme:d3d:wined3d_context_gl_draw_indirect Ignoring index offset 26628.
07d8:fixme:d3d:wined3d_context_gl_draw_indirect Ignoring index offset 3384.
07d8:fixme:d3d:wined3d_context_gl_draw_indirect Ignoring index offset 7800.
07d8:fixme:d3d:wined3d_context_gl_draw_indirect Ignoring index offset 948.
07d8:fixme:d3d:wined3d_context_gl_draw_indirect Ignoring index offset 13620.
07d8:fixme:d3d:wined3d_context_gl_draw_indirect Ignoring index offset 1992.
07d8:fixme:d3d:wined3d_context_gl_draw_indirect Ignoring index offset 4656.
07d8:fixme:d3d:wined3d_context_gl_draw_indirect Ignoring index offset 23712.
07d8:fixme:d3d:wined3d_context_gl_draw_indirect Ignoring index offset 23712.
07d8:fixme:d3d:wined3d_context_gl_draw_indirect Ignoring index offset 62244.
07d8:fixme:d3d:wined3d_context_gl_draw_indirect Ignoring index offset 62244.
07d8:fixme:d3d:wined3d_context_gl_draw_indirect Ignoring index offset 62244.
07d8:fixme:d3d:wined3d_context_gl_draw_indirect Ignoring index offset 62244.
07d8:fixme:d3d:wined3d_context_gl_draw_indirect Ignoring index offset 6924.
07d8:fixme:d3d:wined3d_context_gl_draw_indirect Ignoring index offset 10590.
07d8:fixme:d3d:wined3d_context_gl_draw_indirect Ignoring index offset 7392.
07d8:fixme:d3d:wined3d_context_gl_draw_indirect Ignoring index offset 23004.
07d8:fixme:d3d:wined3d_context_gl_draw_indirect Ignoring index offset 3228.
07d8:fixme:d3d:wined3d_context_gl_draw_indirect Ignoring index offset 3564.
07d8:fixme:d3d:wined3d_context_gl_draw_indirect Ignoring index offset 1512.
07d8:fixme:d3d:wined3d_context_gl_draw_indirect Ignoring index offset 3588.
07d8:fixme:d3d:wined3d_context_gl_draw_indirect Ignoring index offset 112176.
07d8:fixme:d3d:wined3d_context_gl_draw_indirect Ignoring index offset 23712.
07d8:fixme:d3d:wined3d_context_gl_draw_indirect Ignoring index offset 23712.
07d8:fixme:d3d:wined3d_context_gl_draw_indirect Ignoring index offset 8448.
07d8:fixme:d3d:wined3d_context_gl_draw_indirect Ignoring index offset 8448.
07d8:fixme:d3d:wined3d_context_gl_draw_indirect Ignoring index offset 6306.
07d8:fixme:d3d:wined3d_context_gl_draw_indirect Ignoring index offset 1224.
07d8:fixme:d3d:wined3d_context_gl_draw_indirect Ignoring index offset 26628.
07d8:fixme:d3d:wined3d_context_gl_draw_indirect Ignoring index offset 2982.
07d8:fixme:d3d:wined3d_context_gl_draw_indirect Ignoring index offset 7800.
07d8:fixme:d3d:wined3d_context_gl_draw_indirect Ignoring index offset 3132.
07d8:fixme:d3d:wined3d_context_gl_draw_indirect Ignoring index offset 3678.
07d8:fixme:d3d:wined3d_context_gl_draw_indirect Ignoring index offset 10692.
07d8:fixme:d3d:wined3d_context_gl_draw_indirect Ignoring index offset 5760.
07d8:fixme:d3d:wined3d_context_gl_draw_indirect Ignoring index offset 1992.
07d8:fixme:d3d:wined3d_context_gl_draw_indirect Ignoring index offset 4656.
07d8:fixme:d3d:wined3d_context_gl_draw_indirect Ignoring index offset 62244.
07d8:fixme:d3d:wined3d_context_gl_draw_indirect Ignoring index offset 62244.
07d8:fixme:d3d:wined3d_context_gl_draw_indirect Ignoring index offset 62244.
07d8:fixme:d3d:wined3d_context_gl_draw_indirect Ignoring index offset 62244.
wine-6.12-162-gd10887b8f56
--
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=42729
Bug ID: 42729
Summary: Corrupted graphics in Wolcen: Lords of Mayhem
(DX11/CryEngine)
Product: Wine
Version: 2.4
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: directx-d3dx11
Assignee: wine-bugs(a)winehq.org
Reporter: fincer89(a)hotmail.com
Distribution: ---
Created attachment 57716
--> https://bugs.winehq.org/attachment.cgi?id=57716
Wolcen: Lords of Mayhem, corrupted graphics, DX11. Console output
As stated in the title, this DX11/CryEngine Steam game has corrupted graphics
when running on Wine.
Console output as an attachment (while the game was running).
Configuration:
Clean 64-bit prefix, Windows Steam, Wine 2.4 (git), Wine 2.4 Staging (git). No
Staging stuff enabled in winecfg.
--
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=37533
Bug ID: 37533
Summary: Dragon Age Origins: Crashes in some parts of the game
Product: Wine
Version: 1.6.2
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: claw(a)triple6.org
Distribution: ---
Created attachment 49953
--> https://bugs.winehq.org/attachment.cgi?id=49953
Backtrace of a crash
I noticed that Dragon Age Origins crashes in some parts of the game. See the
backtrace attached. Its always in the same locations or sequences.
I also noticed that lowering the graphical settings can help and i can pass
beyond this crashes.
I mostly happens when many textures need to be loaded.
This was tested on AMD (radeon driver 7.5.0), nvidia ( proprietary 340.46) and
intel ( 2.21.15 ).
There are also other graphics related issues in the game like video sequences
displaying just a black screen and sometimes glitches like black textures.
I'll test it against current 1.7 release of wine if i find some time to compile
it and wipe my ~/.wine.
Thanks for wine by the way.
--
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=32230
Bug #: 32230
Summary: Incanto does not display main screen background
Product: Wine
Version: 1.5.17
Platform: x86
URL: http://www.izzygames.com/incanto-t2952.html
OS/Version: Linux
Status: UNCONFIRMED
Severity: minor
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: andrew.millington(a)gmail.com
Classification: Unclassified
Good indicators of why it happens is it display a message a few times at the
start of which you have to dismiss to get to the main screen.
--*.frag--
Fragment shader failed to compile
Vertex shader failed to compile
Having d3dx9_36 does is not a workaround nor does it allow you to proceed into
the game but that could be unrelated.
--
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=56236
Bug ID: 56236
Summary: notepad freezes when displaying child dialog
Product: Wine
Version: unspecified
Hardware: x86-64
OS: Linux
Status: NEW
Keywords: regression
Severity: normal
Priority: P2
Component: win32u
Assignee: wine-bugs(a)winehq.org
Reporter: piotr.caban(a)gmail.com
Distribution: ---
It's a regression that makes wine unusable on my machine (the summary states
about notepad but it happens in other applications as well). I didn't try to
debug it myself yet. I guess it's something specific to my machine
configuration.
Regression test points to:
5f313c0fdb81622e24164cd6cefbdccb04c2beb1 is the first bad commit
commit 5f313c0fdb81622e24164cd6cefbdccb04c2beb1
Author: Rémi Bernon <rbernon(a)codeweavers.com>
Date: Fri Jan 12 12:30:18 2024 +0100
win32u: Move ImeToAsciiEx implementation from winex11.
Using a new WINE_IME_POST_UPDATE NtUserMessageCall call for the drivers.
Steps to reproduce:
- start notepad
- enter anything
- close notepad window
- application freezes after displaying save prompt - it's not possible to
click on the dialog
--
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=50893
Bug ID: 50893
Summary: Wine cannot see home directory
Product: Wine
Version: 6.5
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: major
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: winehome(a)dispostable.com
Distribution: ---
Created attachment 69703
--> https://bugs.winehq.org/attachment.cgi?id=69703
output of "wine explorer ~/"
Steps to reproduce: With a fresh install and prefix (WINEARCH 32 or 64 bit),
run "wine explorer" and navigate to /home.
Expected behaviour: A list of all folders in /home appears.
Actual behaviour: One user home folder, /home/user1, is missing from the list.
Other user home folders, e.g. /home/user2, are shown as expected.
Permissions for /home/user1 and /home/user2 are the same. The absence of
/home/user1 persists, regardless of whether wine is run under user1 or user2.
Running "wine explorer ~/" gives
0144:err:explorer:make_explorer_window Failed to create PIDL for
L"Z:\\home\\user1".
This also affects all file dialogs in other software and opening a file in
/home/user1 with an associated wine executable.
--
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=25759
Summary: crash when running game "Polda" and moving their
(game) window
Product: Wine
Version: unspecified
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: prescott66(a)gmail.com
Created an attachment (id=32832)
--> (http://bugs.winehq.org/attachment.cgi?id=32832)
crash log game "Polda"
this bug is about one older game named "Polda".it is edited to works OK on
Windows XP and it works on real Windows XP.
But when i run it on Linux (Fedora 14, 32-bit, wine ver:1.3.11) game hangs and
when i try to move window, game crashes. log is attached.
i can upload somewhere that game if you will, thats no problem because its not
big game(cca 100MB).
--
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=55467
Bug ID: 55467
Summary: MAME 0.257: mame.exe -listxml crashes
Product: Wine
Version: 8.14
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: pernegger(a)gmail.com
Distribution: ---
Created attachment 75027
--> https://bugs.winehq.org/attachment.cgi?id=75027
wine 8.14 terminal output
Steps to reproduce:
Run "wine mame.exe -listxml".
Expected results:
Very long XML dump, followed by programme exit.
Actual result:
Things crash and burn (see log).
(This affects clrmamepro's ability to import data when being fed the MAME
executable.)
MAME's interactive mode, i.e. just "wine mame.exe" seems to work.
I haven't tested any older versions of MAME, just 0.257. WINE-side, I've tried
8.13 and 8.14, both via the official Ubuntu 22.04 packages available via
WINEHQ. So this isn't necessarily a regression.
--
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=54323
Bug ID: 54323
Summary: user32:input - test_SendInput() sometimes gets an
unexpected 0xc042 message on Windows 7
Product: Wine
Version: unspecified
Hardware: x86-64
OS: Windows
Status: NEW
Severity: normal
Priority: P2
Component: user32
Assignee: wine-bugs(a)winehq.org
Reporter: fgouget(a)codeweavers.com
user32:input - test_SendInput() sometimes gets an unexpected 0xc042 message on
Windows 7:
input.c:4583: Test failed: SendInput triggered unexpected message 0xc042
This failure has not happened in the WineTest runs yet.
The first known instance is from MR693 (2022-08-22) and 8 merge request
versoins have been impacted since, the latest of which is MR1949 where it
happened twice.
--
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=56055
Bug ID: 56055
Summary: AVG Antivirus setup crashes on unimplemented function
ADVAPI32.dll.TreeSetNamedSecurityInfoW
Product: Wine
Version: 9.0-rc2
Hardware: x86-64
OS: Linux
Status: NEW
Severity: normal
Priority: P2
Component: advapi32
Assignee: wine-bugs(a)winehq.org
Reporter: alexhenrie24(a)gmail.com
Distribution: ---
Created attachment 75711
--> https://bugs.winehq.org/attachment.cgi?id=75711
Terminal output
The installer crashes on start.
$ sha256sum avg_antivirus_free_setup.exe
3ef95ae5234fa730b262df8b60e8ba1f7969f3317723dfac588441ecafa32141
--
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=55835
Bug ID: 55835
Summary: putenv clobbers previous getenv
Product: Wine
Version: 8.17
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: msvcrt
Assignee: wine-bugs(a)winehq.org
Reporter: blitzkriegoutlaw(a)hotmail.com
Distribution: ---
Created attachment 75335
--> https://bugs.winehq.org/attachment.cgi?id=75335
Sample code
performing a putenv/_putenv_s to an empty string will clobber a previous
getenv. There may be other cases, but this is the one I ran into. I've attached
sample code.
On Windows it returns:
AMD64 Family 23 Model 1 Stepping 2, AuthenticAMD
AMD64 Family 23 Model 1 Stepping 2, AuthenticAMD
On Wine it returns:
x86 Family 6 Model 79 Stepping 1, GenuineIntel
Family 6 Model 79 Stepping 1, GenuineIntel
The string is globbered by the _setenv_s due to the shift in memory by removing
another environment variable.
--
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=53516
Bug ID: 53516
Summary: user32:input failed due to unexpected WM_TIMECHANGE
message
Product: Wine
Version: unspecified
Hardware: x86-64
OS: Windows
Status: NEW
Severity: normal
Priority: P2
Component: user32
Assignee: wine-bugs(a)winehq.org
Reporter: fgouget(a)codeweavers.com
user32:input failed due to unexpected WM_TIMECHANGE message:
input.c:4525: Test failed: SendInput triggered unexpected message 0x1e
https://test.winehq.org/data/patterns.html#user32:input
This happened on 2022-08-05 in the w10pro64-fr-64 test configuration.
But user32:msg has also received such an unexpected message on 2022-08-02 on
w10pro64-pt-BR-64 (see bug 53273).
It appears this message is sent by Windows when an application modifies the
system time. If the application is another test then it should make sure all
such messages have been sent before continuing.
But it is quite possible that this message is sent when Windows resynchronizes
with some internet time server in which case this message could arrive in any
test at any time.
--
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=51477
Bug ID: 51477
Summary: user32:input test_Input_blackbox() gets unexpected
00&41(A) keystate changes
Product: Wine
Version: 6.10
Hardware: x86-64
OS: Windows
Status: NEW
Severity: normal
Priority: P2
Component: user32
Assignee: wine-bugs(a)winehq.org
Reporter: fgouget(a)codeweavers.com
test_Input_blackbox() gets unexpected 00&41(A) keystate changes:
https://test.winehq.org/data/patterns.html#user32:input
input.c:757: Test failed: 0 (a4/0): 00 from 00 -> 81 unexpected
input.c:757: Test failed: 0 (a4/0): 41 from 00 -> 01 unexpected
* This exclusively happens for the first sendinput_test entry which is supposed
to simulate pressing the left Alt key (VK_LMENU == 0xa1).
* I do not know what the 00 virtual key code corresponds to. According to the
failure message this key is getting pressed down and toggled.
* The 41 virtual key code should be the 'A' key but that's not a toggle key
(unlike, e.g., Caps Lock) so the low order bit should be meaningless. So it's
strange that it changed from off to toggled.
* These failures happen on the following machines:
(41 corresponds to 100% reproducible, some machines may have fewer than 41
runs)
17 2008_newtb-w2008s64-32
1 2008_newtb-w2008s64-64
5 win7_newtb-w7u-2qxl
7 win81_cw-rx460-32
4 win1507_cw-gtx560-1507-32
5 win1507_cw-rx460-1507-32
1 win1709_cw-rx460-1709-64
39 win2009_cw-gtx560-2009-32
39 win2009_cw-gtx560-2009-64
41 win2009_cw-rx460-2009-32
41 win2009_cw-rx460-2009-64
--
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=17414
Summary: user32/dde test crashes if +heap enabled
Product: Wine
Version: 1.1.15
Platform: PC
URL: http://test.winehq.org/data/6a1537c4b5037be5253c33021fda
3a02430533f7/wine_xp_ae-ub-810-heap/riched32:editor.html
OS/Version: Linux
Status: NEW
Keywords: download, source, testcase
Severity: enhancement
Priority: P2
Component: user32
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: austinenglish(a)gmail.com
Created an attachment (id=19484)
--> (http://bugs.winehq.org/attachment.cgi?id=19484)
backtrace in 1.1.15
wine: Unhandled page fault on read access to 0x00130000 at address 0x6045971b
(thread 0009), starting debugger...
...
=>0 0x6045971b CompareStringW+0x13b(lcid=1033, style=0, str1=0x130000, len1=0,
str2=0x6074c780, len2=-1)
[/home/austin/wine-git/dlls/kernel32/../../include/wine/unicode.h:216] in
kernel32 (0x0032f848)
1 0x6045bed4 lstrcmpW+0x64(str1=<register EDI not in topmost frame>,
str2=<register ESI not in topmost frame>)
[/home/austin/wine-git/dlls/kernel32/locale.c:2834] in kernel32 (0x0032f878)
2 0x60681d7a dde_server_wndprocW+0x3da(hwnd=0xe0028, msg=1000, wparam=458798,
lparam=<register EDI not in topmost frame>)
[/home/austin/wine-git/dlls/user32/tests/dde.c:1215] in user32_test
(0x0032f8b8)
3 0x6082337a WINPROC_wrapper+0x1a() in user32 (0x0032f8e8)
4 0x608237ca call_window_proc+0x6a(hwnd=<register EDI not in topmost frame>,
msg=<register ESI not in topmost frame>, wp=458798, lp=1204994,
result=0x32f998, arg=0x606819a0)
[/home/austin/wine-git/dlls/user32/winproc.c:458] in user32 (0x0032f928)
5 0x60828af7 WINPROC_call_window+0xf7(hwnd=<register EDI not in topmost
frame>, msg=1000, wParam=458798, lParam=1204994, result=0x32f998, unicode=1,
mapping=WMCHAR_MAP_DISPATCHMESSAGE)
[/home/austin/wine-git/dlls/user32/winproc.c:2218] in user32 (0x0032f968)
6 0x607e7ee6 DispatchMessageW+0x96(msg=<register EDI not in topmost frame>)
[/home/austin/wine-git/dlls/user32/message.c:3122] in user32 (0x0032f9a8)
7 0x607a4037 WDML_SyncWaitTransactionReply+0xe7(hConv=0x1254b8,
dwTimeout=<register ESI not in topmost frame>, pXAct=0x125508, ack=0x32fb84)
[/home/austin/wine-git/dlls/user32/dde_client.c:1069] in user32 (0x0032fa08)
8 0x607a4b21 DdeClientTransaction+0x651(pData="test dde command", cbData=17,
hConv=0x1254b8, hszItem=0xdead, wFmt=48879, wType=16464, dwTimeout=1000,
pdwResult=0x32fb84) [/home/austin/wine-git/dlls/user32/dde_client.c:1225] in
user32 (0x0032fa68)
9 0x60686158 test_dde_aw_transaction+0x638()
[/home/austin/wine-git/dlls/user32/tests/dde.c:1374] in user32_test
(0x0032fb98)
...
216 while (*s) s++;
Attached is the backtrace...I've stripped out +heap, so the output is readable,
but easily reproducible.
--
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=54089
Bug ID: 54089
Summary: user32:input - test_SendInput() sometimes gets an
unexpected 0x738 message on w1064v1709
Product: Wine
Version: unspecified
Hardware: x86-64
OS: Windows
Status: NEW
Severity: normal
Priority: P2
Component: user32
Assignee: wine-bugs(a)winehq.org
Reporter: fgouget(a)codeweavers.com
test_SendInput() sometimes gets an unexpected 0x738 message on w1064v1709:
* 2022-060-14
input.c:4439: Test failed: SendInput triggered unexpected message 0x60
input.c:4457: Test failed: SendInput triggered unexpected message 0x738
* 2022-12-05
input.c:4560: Test failed: SendInput triggered unexpected message 0x60
input.c:4578: Test failed: SendInput triggered unexpected message 0x738
See https://test.winehq.org/data/patterns.html#user32:input
It's not clear why this only happens on w1064v1709.
I suspect this is a repeat of bug 48815 where this 0x738 message was being sent
to a message-only UserAdapterWindowClass window (but apparently that impacted
all Windows 10 >= 1709). If so maybe user32:input should selectively ignore
some messages like user32:win now does:
commit fa28e05cf5b0101fb046c4845391634791268200
Author: Rémi Bernon <rbernon(a)codeweavers.com>
Date: Mon Jan 31 14:18:07 2022 +0100
user32/tests: Ignore messages for UserAdapterWindowClass windows.
Wine-Bug: https://bugs.winehq.org//show_bug.cgi?id=48815
Signed-off-by: Rémi Bernon <rbernon(a)codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard(a)winehq.org>
--
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=51473
Bug ID: 51473
Summary: user32:input Some SendInput() set LastError to
ERROR_ACCESS_DENIED on cw-rx460 19.11.3
Product: Wine
Version: 6.10
Hardware: x86-64
OS: Windows
Status: NEW
Severity: normal
Priority: P2
Component: user32
Assignee: wine-bugs(a)winehq.org
Reporter: fgouget(a)codeweavers.com
More specifically some cw-rx460 machines have the following failures:
https://test.winehq.org/data/patterns.html#user32:input
input.c:4410: Test failed: SendInput returned 1, error 0x5
input.c:4413: Test failed: SendInput returned 16, error 0x5
input.c:4464: Test failed: SendInput returned 16, error 0x5
These fail not because SendInput() failed, but because it modified LastError,
setting it to ERROR_ACCESS_DENIED.
This only happens on the following machines which have in common that they use
the 19.11.3 Radeon driver which is the latest version that will run on these
Windows versions:
win1507_cw-rx460-1507-32
win1507_cw-rx460-1507-64
win81_cw-rx460-32
win81_cw-rx460-64
The failure is systematic on these machines.
--
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=51471
Bug ID: 51471
Summary: user32:input receives unexpected WM_SYSTIMER messages
in test_SendInput()
Product: Wine
Version: 6.10
Hardware: x86-64
OS: Windows
Status: NEW
Severity: normal
Priority: P2
Component: user32
Assignee: wine-bugs(a)winehq.org
Reporter: fgouget(a)codeweavers.com
user32:input sometimes receives unexpected WM_SYSTIMER messages in
test_SendInput():
https://test.winehq.org/data/patterns.html#user32:input
input.c:4477: Test failed: SendInput triggered unexpected message 0x118
Notes:
* This is random: there is no machine where it happens systematically; and
different machines don't necessarily have the issue on the same day.
* This does not happen on a specific Windows version though not all seem to be
impacted either. Specifically this issue has been seen on the following
machines:
win7_newtb-w7u-2qxl
win7_newtb-w7u-de
win7_newtb-w7u-el
win7_newtb-w7u-es
win7_newtb-w7u-pt-PT
2008_newtb-w2008s64
win81_cw-rx460
win1507_cw-gtx560-1507
win1507_cw-rx460-1507
win1909_cw-gtx560-1909
win2009_cw-gtx560-2009
win2009_cw-rx460-2009
* Maybe the following article can be useful:
https://devblogs.microsoft.com/oldnewthing/20160624-00/?p=93745
--
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=42784
Bug ID: 42784
Summary: Lost Planet dx10 demo black screen after starting new
game
Product: Wine
Version: 2.5
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: directx-d3d
Assignee: wine-bugs(a)winehq.org
Reporter: andras(a)sth.sze.hu
Distribution: ---
Created attachment 57802
--> https://bugs.winehq.org/attachment.cgi?id=57802
+d3d11, + d3d_shader
After starting new game or performance test in Lost Planet dx10 demo, it shows
only black screen. It tries to create a geometry shader and fails. As far as I
see, it want to use a vertex shader as geometry shader.
See log file.
--
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=54223
Bug ID: 54223
Summary: [Wine 8.0-rc2] [Severe Performance Regression]
[Unigine Heaven Benchmark 4.0] Wine DirectX11 to
OpenGL Severely Low FPS
Product: Wine
Version: 8.0-rc2
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: major
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: CHECK_1234543212345(a)protonmail.com
Distribution: ---
⬤ System Information:
OS: Ubuntu 22.10
Kernel: 6.1.0
CPU: Ryzen 7 1700
GPU: XFX RX580 4GB
Window Manager: OpenBox
Compositor: No Compositor, Xorg TearFree Disabled
⬤ Issue:
Wine's DirectX11 to OpenGL was the fastest on Wine 6.0, but then got a little
slower on Wine 7.0 and got severely more slower when I tested with Wine 7.22
before I installed Wine 8.0-rc2.
⬤ Settings:
RX580 locked to 300Mhz core clock and 300Mhz memory clock
Quality: Low
Resolution: 1280x720
Fullscreen: Unchecked
⬤ Information:
Lutris was used to easily switch between Wine versions.
Scene 2 is where the screen was moving across the bridge looking at the boat.
You can switch scenes with in the Unigine Benchmark by using the "Backspace"
and "Enter" keyboard keys.
Unigine Heaven Benchmark 4.0 Results:
--------------------
Wine staging 8.0-rc2 DX11 to OpenGL
Scene 2: 41 FPS (41 FPS with WINEDEBUG=-all)
Scene 3: 24 FPS (24 FPS with WINEDEBUG=-all)
Wine staging 8.0-rc2 DX11 to Vulkan (winetricks renderer=vulkan)
Scene 2: 26 FPS (with WINEDEBUG=-all)
Scene 3: 15 FPS (with WINEDEBUG=-all)
Wine staging 8.0-rc2 DX11 to Vulkan (DXVK 2.0) (./setup_dxvk.sh install)
Scene 2: 84 FPS (with WINEDEBUG=-all)
Scene 3: 104 FPS (with WINEDEBUG=-all)
-
Wine staging 8.0-rc2 DX9 to OpenGL
Scene 2: 90 FPS (with WINEDEBUG=-all)
Scene 3: 97 FPS (with WINEDEBUG=-all)
Wine staging 8.0-rc2 DX9 to Vulkan (winetricks renderer=vulkan)
CRASHES with an error dialog when starting benchmark
Wine staging 8.0-rc2 DX9 to Vulkan (DXVK 2.0) (./setup_dxvk.sh install)
Scene 2: 57 FPS (with WINEDEBUG=-all)
Scene 3: 67 FPS (with WINEDEBUG=-all)
-
Wine staging 8.0-rc2 OpenGL to OpenGL
Scene 2: 91 FPS (with WINEDEBUG=-all)
Scene 3: 105 FPS (with WINEDEBUG=-all)
--------------------
Wine staging 7.22 DX11 to OpenGL
Same performance problem as wine 8.0-rc2
--------------------
Wine staging 7.0 DX11 to OpenGL
Scene 2: 61 FPS (74 FPS with WINEDEBUG=-all)
Scene 3: 32 FPS (61 FPS with WINEDEBUG=-all)
-
Wine staging 7.0 DX9 to OpenGL
Scene 2: 88 FPS (with WINEDEBUG=-all)
Scene 3: 83 FPS (with WINEDEBUG=-all)
--------------------
Wine staging 6.0 DX11 to OpenGL
Scene 2: 88 FPS (88 FPS with WINEDEBUG=-all)
Scene 3: 48 FPS (71 FPS with WINEDEBUG=-all)
-
Wine staging 6.0 DX9 to OpenGL
Scene 2: 88 FPS (with WINEDEBUG=-all)
Scene 3: 78 FPS (with WINEDEBUG=-all)
--------------------
Wine staging 5.1 DX11 to OpenGL
Scene 2: 71 FPS (71 FPS with WINEDEBUG=-all)
Scene 3: 48 FPS (55 FPS with WINEDEBUG=-all)
--------------------
Wine staging 4.0 DX11 to OpenGL
Scene 2: 75 FPS (84 FPS with WINEDEBUG=-all)
Scene 3: 41 FPS (64 FPS with WINEDEBUG=-all)
--------------------
Wine staging 3.0 DX11 to OpenGL
Scene 2: 48 FPS (61 FPS with WINEDEBUG=-all)
Scene 3: 27 FPS (44 FPS with WINEDEBUG=-all)
The Unigine Benchmark Launcher opened very quickly with wine 3.0
--------------------
⬤ Information:
I had "Output debugging info" "Enabled" in Lutris at first with the DX11 to
OpenGL tests and retested with "Output debugging info" "Disabled (default)" in
Lutris, which just added the "WINEDEBUG=-all" environmental variable.
The Wine 32-bit staging versions 7.0 to 3.0 was downloaded from:
https://www.playonlinux.com/wine/binaries/phoenicis/staging-linux-x86/
The Unigine Heaven Benchmark Launcher was closed after starting each benchmark
because the Unigine Heaven Benchmark Launcher was decreasing the FPS.
⬤ Conclusion:
DirectX11 to OpenGL was the fastest in Wine 6.0
Somewhere between Wine 6.0 and Wine 7.0, Wine's DirectX11 to OpenGL became a
bit more slower.
Somewhere between Wine 7.0 and Wine 7.22, Wine's DirectX11 to OpenGL became
severely more slower.
Wine's OpenGL to OpenGL is currently faster than:
DXVK (DXVK 2.0) (./setup_dxvk.sh install)
Wine's DirectX9/DirectX11 to OpenGL (renderer=gl).
Wine's DirectX9/DirectX11 to Vulkan (winetricks renderer=vulkan)
Unigine Heaven Benchmark crashes when using DirectX9 to Vulkan (winetricks
renderer=vulkan) but not with DXVK's DirectX9 to Vulkan (DXVK 2.0)
(./setup_dxvk.sh install).
Wine 3.0 Opens the Unigine Heaven Benchmark launcher very quickly. But then
with Wine 4.0 and above, the Unigine Heaven Benchmark launcher opens more
slower than Wine 3.0. I am using a HDD.
⬤ Warning if not fixed before Wine 8.0 stable gets released:
It would be good if this problem is fixed before Wine 8.0 stable get released
because Steam's Proton uses stable versions of Wine.
If this problem is not fixed by the time Wine 8.0 stable gets released and
proton updates to Wine 8.0. anyone using "PROTON_USE_WINED3D=1" on a DirectX11
Steam game can have severely Low FPS while Wine 7.0's DirectX11 to OpenGL is
only a little bit more slower than Wine 6.0's DirectX11 to OpenGL right now.
--
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=52595
Bug ID: 52595
Summary: Starts with black window
Product: Wine
Version: 7.2
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: k8auf1947(a)cometchaser.de
Distribution: ---
Created attachment 71920
--> https://bugs.winehq.org/attachment.cgi?id=71920
App starts with black window, Wine 7.2 on Bullseye
The application starts and shows a black window (application menue is shown).
After clicking into the black window, the application draws the window.
It worked until Wine 7.1, problem appears with Wine 7.2 on Debian Bullseye.
Happens also on Debian Bookworm.
File: test-2022-02-25_18.50.43.mp4
Wine 7.1 on Bookworm
File: test-2022-02-26_10.40.38.mp4
Wine 7.2 on Bullseye
--
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=50475
Bug ID: 50475
Summary: ENM (Externes Notenmodul / external mark module)
crashes on opening
Product: Wine
Version: 5.5
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: major
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: sebastian.arnhold387(a)gmail.com
Distribution: ---
Created attachment 69111
--> https://bugs.winehq.org/attachment.cgi?id=69111
Terminal log
ENM is a teacher's tool for grading students, released by the government of the
state of North-Rhine Westphalia (NRW) in Germany.
Requirements for wine:
winetricks mdac28 msls31 riched30 vb6run winbind
Description of the bug:
When trying to install the latest version of ENM ("ENM-Setup 1.4.8.1 Stand
21.12.2020") downloaded from the official government website, the installer
works fine. When trying to open the installed executable, the program crashes
immediately with an "unhandled exception" error.
I tried to run it using both wine and wine-development package, trying both 64
bit and 32 bit prefix, on Ubuntu 20.04 amd64. Results are identical.
Terminal output log included.
Link to software (installer):
https://www.svws.nrw.de/system/files/zip_und_exe/2020-12/ENM-Setup_1_4_8_1.…
Link to WineHQ database entry (outdated and unmaintained):
https://appdb.winehq.org/objectManager.php?sClass=application&iId=9047
Additional problem solving analysis:
Older versions of the software definitely worked fine until June 2020, as e.g.
this blog entry proves (http://www.tohschneider.de/extnotmodlinux/). Suspected
a problem with ENM software itself, but when trying older version from before
that time, these versions that once worked fine now also throw an "unhandled
exception" error. This proves that something in wine must have changed.
Contacted developer of ENM software. Developer suspects a problem with the way
wine handles the ADO drivers. Other softwares from the government school
software suite show similar behaviour. Government institution sadly does not
support Linux, but is interested in getting ENM software to work again.
In the interest of free education, solution would be highly appreciated.
Thanks!
--
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=54362
Bug ID: 54362
Summary: BurnInTest calls unimplemented function
ntoskrnl.exe.ExAllocatePool2
Product: Wine
Version: 8.0-rc5
Hardware: x86-64
OS: Linux
Status: NEW
Severity: normal
Priority: P2
Component: ntoskrnl
Assignee: wine-bugs(a)winehq.org
Reporter: alexhenrie24(a)gmail.com
Distribution: ---
Created attachment 73935
--> https://bugs.winehq.org/attachment.cgi?id=73935
Console output
When BurnInTest starts, it tries several times to call ExAllocatePool2. Each
time, a black terminal window appears over the main window.
$ sha256sum bitwindows.exe
d90fd00445986b74c5af179a5cb1a381c9b6ab7be459afcb55fe342f12724296
--
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=51931
Bug ID: 51931
Summary: Dead Rising encounters infinite loading when starting
a new game (needs WMAudio Decoder DMO)
Product: Wine
Version: 6.20
Hardware: x86-64
OS: Linux
Status: NEW
Severity: minor
Priority: P2
Component: xaudio2
Assignee: wine-bugs(a)winehq.org
Reporter: andrey.goosev(a)gmail.com
Distribution: ---
073c:err:ole:com_get_class_object class {2eeb4adf-4578-4d10-bca7-bb955f56320a}
not registered
073c:err:ole:com_get_class_object no class object
{2eeb4adf-4578-4d10-bca7-bb955f56320a} could be created for context 0x1
wine-6.20-61-gababea0fd70
--
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=56119
Bug ID: 56119
Summary: Emperor - Rise of the Middle Kingdom: invisible menu
buttons
Product: Wine
Version: 8.18
Hardware: x86-64
URL: https://www.gamepressure.com/download.asp?ID=1725
OS: Linux
Status: NEW
Keywords: download, regression
Severity: normal
Priority: P2
Component: d3d
Assignee: wine-bugs(a)winehq.org
Reporter: gyebro69(a)gmail.com
CC: z.figura12(a)gmail.com
Regression SHA1: ee7d047dd55a4b2338eb2d64f85b7d984b39812f
Distribution: ---
Only the background is drawn in the menus, the menu buttons are invisible in
the game Emperor:Rise of the Middle Kingdom (GOG). Can be reproduced in the
demo version too.
Pharaoh is another city-building game using the same engine: here the screen
remains black when the game gets to the main menu.
Pharaoh demo:
https://archive.org/download/PharaohDemo/PharaohDemo.zip
Reverting commit ee7d047dd55a4b2338eb2d64f85b7d984b39812f
on top of Wine-9.0-rc3 fixes the problem in both games for me.
Plain terminal output doesn't show anything related.
PharaohDemo.zip (74 M)
md5:474872cf372acbd4312ca0a6caf75434
si_emperor_demo.exe (128 M)
md5:45052f088f699afb7a0d5e2ecfcb1804
--
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=51474
Bug ID: 51474
Summary: user32:input SendInput() triggers an unexpected
message 0x60 on Windows 10 1709
Product: Wine
Version: 6.10
Hardware: x86-64
OS: Windows
Status: NEW
Severity: normal
Priority: P2
Component: user32
Assignee: wine-bugs(a)winehq.org
Reporter: fgouget(a)codeweavers.com
Created attachment 70310
--> https://bugs.winehq.org/attachment.cgi?id=70310
Trace all window handles and 0x60 message
SendInput() triggers an unexpected message 0x60 in test_SendInput() on Windows
10 1709:
https://test.winehq.org/data/patterns.html#user32:input
input.c:4451: Test failed: SendInput triggered unexpected message 0x60
* This failure is almost but not 100% systematic on Windows 10 1709: it
happened 202 times out of 205.
* I could not find any documentation on this 0x60 message.
* But the attached patch shows that:
- The message is sent to a window belonging to our process.
- The test did not directly create that window.
- The window class is UserAdapterWindowClass which seems to be related to IME
despite these machines running in a regular en_US locale.
input.c:4404: 4404 hwnd=0000000000020274
input.c:4474: Test failed: SendInput triggered unexpected message 0x60
input.c:4480: hwnd=0000000000020274 pid=7016 tid=7012 now=64359
input.c:4481: hwnd=0000000000040048 message=0060 wParam=1 lParam=0 time=64359
pt=(512,384)
input.c:4485: wnd: pid=7016 tid=7012 class=22 L"UserAdapterWindowClass" text=0
L""
--
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=56249
Bug ID: 56249
Summary: Mashiroiro Symphony (visual novel) sound doesn't stop
when skipping splash screen
Product: Wine
Version: 9.0-rc5
Hardware: x86-64
OS: Linux
Status: NEW
Severity: minor
Priority: P2
Component: dsound
Assignee: wine-bugs(a)winehq.org
Reporter: dark.shadow4(a)web.de
Distribution: ---
Use LC_ALL=ja_JP.UTF-8 for installing and running.
You need to install the game, then run mashiroTrial.exe.
It will shot an "Attention" splash screen. When you now click with the mouse,
the screen continues and the voice should stop. But it keeps talking, switching
to either the right or left channel only. On windows the sound stops correctly.
winetricks dsound helps.
--
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=50785
Bug ID: 50785
Summary: wineserver corruption with :
msg:get_server_queue_handle Cannot get server thread
queue
Product: Wine
Version: 6.0-rc6
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: critical
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: lanthruster(a)gmail.com
Distribution: ---
Created attachment 69593
--> https://bugs.winehq.org/attachment.cgi?id=69593
wineserver explorer.exe flood
A very frustrating bug:
Install Wine 6.0
Install Adobe Acrobat DC (any version) or Adobe Acrobat XI (any version)
Now run acrord32.exe
acrord32.exe will launch and work BUT
1. you won't be able to run any more wine applications but existing will
continue to work
2. when a wine application is launched the process lists is flooded with
explorer.exe /desktop (hundreds of them are spawned leading to resource
exhaustion)
3. when you kill them with killall explorere.exe - the currently running wine
applications will continue to run normally as well as acrord32.exe
4. you can still launch wineapp from another wine app but not with wine or
winecosole because of 2
5. when acrord32.exe is closed wine won't return to normal it will still 2.
6. after wineserver -k everything is back to normal
the console is flooded with
01fc:fixme:heap:RtlSetHeapInformation 00000000 1 00000000 0 stub
0218:err:msg:get_server_queue_handle Cannot get server thread queue
021c:err:msg:get_server_queue_handle Cannot get server thread queue
0220:err:msg:get_server_queue_handle Cannot get server thread queue
0220:err:win:GetDesktopWindow failed to create desktop window
0220:err:msg:get_server_queue_handle Cannot get server thread queue
0220:err:win:GetDesktopWindow failed to create desktop window
0220:err:msg:get_server_queue_handle Cannot get server thread queue
0220:err:win:GetDesktopWindow failed to create desktop window
0220:err:ole:apartment_createwindowifneeded CreateWindow failed with error 1411
0584:err:module:LdrInitializeThunk Initializing dlls for
L"C:\\windows\\system32\\explorer.exe" failed, status c000013a
(see 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.
https://bugs.winehq.org/show_bug.cgi?id=42999
Bug ID: 42999
Summary: 3D Engine in NosTale not reacts for mouse on Mac
Product: Wine-staging
Version: 2.7
Hardware: x86-64
OS: Mac OS X
Status: UNCONFIRMED
Severity: major
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: artrixdev(a)gmail.com
CC: erich.e.hoover(a)wine-staging.com, michael(a)fds-team.de,
sebastian(a)fds-team.de
Created attachment 58140
--> https://bugs.winehq.org/attachment.cgi?id=58140
Simple logs from cmd and graphic bug in game.
If try change camera position nothing to do and if I clicked on items in
equipment it's changing to "question mark" graphic.
--
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=38235
Bug ID: 38235
Summary: Blindwrite 7 does not detect any CD/DVD drive.
Product: Wine
Version: 1.7.38
Hardware: x86
URL: http://de.vso-software.fr/products/Blindwrite/blindwri
te.php
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: mountmgr.sys
Assignee: wine-bugs(a)winehq.org
Reporter: bernhardu(a)vr-web.de
Distribution: Debian
Created attachment 51041
--> https://bugs.winehq.org/attachment.cgi?id=51041
Save user mode accessible device in HKLM\SYSTEM\MountedDevices "\DosDevices\X:"
Having a CD in the drive and that one mounted it is accessible through e.g.
cmd.
But Blindwrite (7.0.0.0) does not show any drive in its user interface.
When looking into a "WINEDEBUG=+reg,+file,+debugstr" an access to
HKLM\SYSTEM\MountedDevices
appears.
There is for any device an entry e.g. "\DosDevices\E:".
This entry holds in my case the mount point of the CD as ASCII.
Blindwrite tries now to access the drive by opening this interpreted as
unicode string, which fails.
trace:file:CreateFileW
L"\6d2f\6465\6169\622f\7265\686e\7261\2f64\4642\3931\3234\325f1" GENERIC_READ
GENERIC_WRITE FILE_SHARE_READ FILE_SHARE_WRITE creation 3 attributes 0x0
...
trace:file:CreateFileW returning 0xffffffff
...
trace:file:DeviceIoControl
(0xffffffff,4d014,0x33f3a4,80,0x33f3a4,80,0x33f3f8,(nil))
...
warn:debugstr:OutputDebugStringA "IOCTL_CDROM_GET_INQUIRY_DATA - Ung\xfcltiges
Handle.\r\n Error 0x00000006 - Ung\xfcltiges Handle.\r\n"
Blindwrite even tries to access this invalid file handle and silently fails.
-----------------
Changing HKLM\SYSTEM\MountedDevices "\DosDevices\E:" to an unicode
representation of "\\.\E:" makes Blindwrite happy and the drive shows up,
and successfully create an image.
Attached is a patch that tries to do this automatically for "DosDevices"
with a drive letter.
(But I am not sure about any side effects or if it could already be
sent to wine-patches.)
--
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=52301
Bug ID: 52301
Summary: Firefox installer shows black rectangles
Product: Wine
Version: 7.0-rc3
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: rpisl(a)seznam.cz
Distribution: ---
Created attachment 71455
--> https://bugs.winehq.org/attachment.cgi?id=71455
Black rectangle in Firefox installer
Firefox 91 ESR 64bit installer shows black rectangles. It is just a minor issue
not affecting 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.
https://bugs.winehq.org/show_bug.cgi?id=56240
Bug ID: 56240
Summary: A black bar is printed instead of a grey bar
Product: Wine
Version: 9.0
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wineps.drv
Assignee: wine-bugs(a)winehq.org
Reporter: spam(a)abma.de
Distribution: ---
Created attachment 75946
--> https://bugs.winehq.org/attachment.cgi?id=75946
top: how it should look like; bottom: how it looks
When printing from a commercial application, a grey background becomes black.
When printing a table, the first header is printed correct on a page. In the
second and following headers the background is printed black (see screenshot).
From the console output, this lines look suspicious:
016c:fixme:psdrv:hmf_proc unhandled object type 0
(see also log.txt)
--
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=51642
Bug ID: 51642
Summary: Wine 6.15 blocks windows game login
Product: Wine
Version: 6.15
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: mountmgr.sys
Assignee: wine-bugs(a)winehq.org
Reporter: johnherschelfreeman2013(a)gmail.com
Distribution: ---
Created attachment 70502
--> https://bugs.winehq.org/attachment.cgi?id=70502
wine-output-upon-login-attempt
Wine 6.15 blocks login on to world server.
Game: EverQuest
Tested with 6.14 works fine.
Compiled 6.15 directly from source onto system loaded game and get login error.
Suspected cause anti-cheat or anti-vm software detection is triggered by wine
6.15
--
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=48078
Bug ID: 48078
Summary: Astro Avenger 2 fails to run with
seh:setup_exception_record stack overflow
Product: Wine
Version: 4.19
Hardware: x86-64
URL: https://astro-avenger.en.softonic.com/
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: iodreamify(a)gmail.com
Distribution: Ubuntu
Created attachment 65628
--> https://bugs.winehq.org/attachment.cgi?id=65628
winedebug warn+all log
Astro Avenger 2 manages to launch but clicking "Run" in the launcher makes the
game freeze forever with a
"002a:err:seh:setup_exception_record stack overflow 816 bytes in thread 002a
eip
00ac1926 esp 00231000 stack 0x230000-0x231000-0x330000" error.
Tried it both in 64bit and 32bit prefixes in windows 7, XP, 2000 and 98 modes
and also disabling csmt.I've added a winedebug=warn+all log below.
A demo 60 min trial can be found at the link above.
I've also done a +relay log but i'm not sure if it's relevant. Thank you.
--
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=52441
Bug ID: 52441
Summary: Soft-Denchi DRM fails to register UCX.ocx
Product: Wine
Version: 7.0-rc5
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: advapi32
Assignee: wine-bugs(a)winehq.org
Reporter: felineswift+wine(a)gmail.com
Distribution: ---
This software is required by some games (e.g. Armored warrior iris).
To test it install MFC42 and MSVC 2008 SP1 runtime to 32-bit prefix and install
Soft-denchi, then run "regsvr32 UCX.ocx" in C:/Program Files/Soft-Denchi.
I tried to understand why it fails. Maybe someone more knowledgeable can
find/understand the root cause:
>regsvr32 UCX.ocx
it starts loading UCOpgDlg.dll
... call some crypt functions ...
call crypt32.CryptBinaryToStringA with flag CRYPT_STRING_HEX
03e8:fixme:crypt:CryptBinaryToStringA Unimplemented type 4
call advapi32.CryptExportKey
... call some more crypt functions ...
call advapi32.CryptVerifySignatureA
-> returns NTE_BAD_SIGNATURE and EXCEPTION_WINE_CXX_EXCEPTION is thrown
...
03e8:warn:module:process_attach Initialization of L"UCOpgDlg.dll" failed
...
regsvr32: loading UCX.ocx failed (it was localized error message)
--
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=56227
Bug ID: 56227
Summary: Project CW: Unable to load engine.dll on Wine 9.0
Product: Wine
Version: 9.0
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: charles2000wang(a)gmail.com
Distribution: ---
A new game called Project CW by WarGaming has a game executable that loads an
"engine.dll".
The error messages:
0024:err:module:loader_init "engine.dll" failed to initialize, aborting
0024:err:module:loader_init Initializing dlls for
L"Z:\\home\\user\\CW\\bin\\engine_launcher.exe" failed, status c0000005
This does not occur in an older version of wine (tested with lutris-7.2.2 so
wine 7.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.
https://bugs.winehq.org/show_bug.cgi?id=56218
Bug ID: 56218
Summary: [macOS] [10.14] Last release of wine-stable via
Homebrew doesn't work on macOS 10.14
Product: Wine
Version: 9.0-rc5
Hardware: x86-64
OS: MacOS
Status: UNCONFIRMED
Severity: blocker
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: mestesso.me(a)virgilio.it
Updating wine-stable package via-Homebrew on macOS 10.14 makes Wine un-usable..
It says that macOS 10.15 is required!
Remember that 10.14 is both x86 and x64 system, and many of us can't upgrade to
10.15..
Please, keep (or revert) version for macOS 10.14 too
--
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=56207
Bug ID: 56207
Summary: Hardwar: strange, vivid colors when 32 bit textures
enabled
Product: Wine
Version: 9.0
Hardware: x86-64
URL: https://archive.org/download/HARDWAR/HARDWAR.zip
OS: Linux
Status: NEW
Keywords: download
Severity: normal
Priority: P2
Component: d3d
Assignee: wine-bugs(a)winehq.org
Reporter: gyebro69(a)gmail.com
Distribution: ---
Created attachment 75920
--> https://bugs.winehq.org/attachment.cgi?id=75920
screenshot - 16 bit vs. 32 bit textures
The game Hardwar (patched to the latest UIM.06 version) displays textures
incorrectly when '32 bit Textures' option is enabled in the launcher.
Reproduced with NVIDIA 535.43.22 and with nouveau/Mesa 23.3.3 as well.
Terminal output (it's the same as well when 32 bit textures are disabled):
0114:fixme:ddraw:ddraw_surface1_Flip Ignoring flags 0x1.
0114:fixme:d3d:wined3d_device_apply_stateblock Antialias not supported yet.
0114:fixme:d3d:wined3d_device_apply_stateblock Render state WINED3D_RS_SUBPIXEL
not implemented yet.
012c:fixme:d3d:state_linepattern_w Setting line patterns is not supported in
OpenGL core contexts.
(lots of)0114:fixme:d3d:wined3d_device_apply_stateblock Render state
WINED3D_RS_SUBPIXEL not implemented yet.
Not a regression, the problem is present with every Wine version I tried back
until 1.9.11.
To reproduce the problem with the early demo version + UIM.06 patch:
1. Install the demo version, link is in URL. Setting Win98 mode is advisable
because the installer is from that era. Don't start the demo yet.
2. Install the UIM.06 patch over the demo:
http://www.zedo.hardwar.info/HardwarUIM06.zip
3. Start Hardman.exe (launcher), select Display tab, enable '32 Bit Textures'
option in Image Quality. The rest of the options here have no effect on the
bug.
4. Go back to the 'Game' tab in the launcher, <Launch...>, <OK>, <Save>. The
game should enter the main menu.
5. Enter a pilot name then select a job and voilà... you are in the cockpit
with psychedelic textures everywhere.
The Steam version can also be used to reproduce the problem:
https://store.steampowered.com/app/1500540/Hardwar/
Tested with wine-9.0-54-g1932c3a2516
--
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=56224
Bug ID: 56224
Summary: SpeedWave doesn't redraw window initially properly
Product: Wine
Version: 9.0-rc5
Hardware: x86-64
OS: Linux
Status: NEW
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: dark.shadow4(a)web.de
Distribution: ---
First, need to work around bug 55883 (oleaut32.OleLoadPictureFil2) and possibly
bug 56215 (Can't use -O2).
Initially parts of the window are white, which they should not be. After moving
the window off screen, it redraws them properly.
--
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=56237
Bug ID: 56237
Summary: Erratic behavior of dialog boxes
Product: Wine
Version: 9.0
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: ch.panel(a)free.fr
Distribution: ---
Created attachment 75944
--> https://bugs.winehq.org/attachment.cgi?id=75944
visual studio small project showing wine bug
under Windows: the action of <ENTER> returns the code of the button which has
the focus
under wine: the action returns nothing (0) unless we have moved the focus if we
replace
===============
IDD_ABOUT DIALOG DISCARDABLE 0, 0, 239, 66
STYLE DS_MODALFRAME | WS_POPUP | WS_CAPTION | WS_SYSMENU
CAPTION "My About Box"
FONT 8, "MS Sans Serif"
BEGIN
PUSHBUTTON "OK",1001,174,18,50,14
PUSHBUTTON "Cancel",1002,174,35,50,14
GROUPBOX "About this program...",IDC_STATIC,7,7,225,52
CTEXT "An example program showing how to use Dialog
Boxes\r\n\r\nby theForger", IDC_STATIC,16,18,144,33
END
===============
by
===============
IDD_ABOUT DIALOG DISCARDABLE 0, 0, 239, 66
STYLE DS_MODALFRAME | WS_POPUP | WS_CAPTION | WS_SYSMENU
CAPTION "My About Box"
FONT 8, "MS Sans Serif"
BEGIN
DEFPUSHBUTTON "OK",1001,174,18,50,14
PUSHBUTTON "Cancel",1002,174,35,50,14
GROUPBOX "About this program...",IDC_STATIC,7,7,225,52
CTEXT "An example program showing how to use Dialog
Boxes\r\n\r\nby theForger", IDC_STATIC,16,18,144,33
END
===============
then <ENTER> returns the OK key (1001)
if we return to the previous situation (2 PUSHBUTTON), and we replace the codes
1001 and 1002 by ID_OK and ID_CANCEL (in the RC and the source code) then
<ENTER> returns OK (ID_OK)
attached code showing the bug
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=56173
Bug ID: 56173
Summary: modal dialog boxes behaves amodal
Product: Wine
Version: 8.0.2
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: major
Priority: P2
Component: comdlg32
Assignee: wine-bugs(a)winehq.org
Reporter: ch.panel(a)free.fr
Distribution: ---
any modal dialog box opened by an application does not prevent the application
window from being manipulated, moved, reduced, etc.
example : open notepad.exe and a dialog box open file then you can manipulate
the application 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.
https://bugs.winehq.org/show_bug.cgi?id=56230
Bug ID: 56230
Summary: Pro Evolution Soccer 5 crashed or stopped during play
Product: Wine
Version: 8.0.2
Hardware: x86-64
OS: FreeBSD
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: d3d
Assignee: wine-bugs(a)winehq.org
Reporter: aminavy74(a)vatanmail.ir
Created attachment 75940
--> https://bugs.winehq.org/attachment.cgi?id=75940
PES-5 close in wine-7
Hello!
during play wine crashing or 3D graphics disappeared.
wine7 in FreeBSD depended on vkd3d and has not this problem. but wine-8 not.
I'm not sure related or not but when I quit from game in wine7, problem message
appeared. This attachment of backtrace.
--
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=39793
Bug ID: 39793
Summary: Starcraft freezes when starting a Direct Cable
Connection game
Product: Wine
Version: 1.7.46
Hardware: x86
OS: Linux
Status: NEW
Severity: normal
Priority: P2
Component: ntdll
Assignee: wine-bugs(a)winehq.org
Reporter: alexhenrie24(a)gmail.com
Distribution: ---
To reproduce:
1. Add yourself to the dialout (Ubuntu) or uucp (Arch) user group.
2. Log out and log back in.
3. In Starcraft, click Multiplayer, Direct Cable Connection, Ok.
The problem is that Starcraft attempts to detect which serial port is connected
by sending a burst of data on all ports COM1 through COM8. On Linux, COM1
through COM4 default to ttyS0 through ttyS3, but even though the device files
exist, rarely do all of them correspond to actual physical devices. So,
Starcraft hangs forever waiting for the write to complete successfully.
A patchset that fixes this bug is available at
https://github.com/alexhenrie/wine/commits/master
First reported at
https://appdb.winehq.org/objectManager.php?sClass=version&iId=149&iTestingI…
--
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=56233
Bug ID: 56233
Summary: On macOS Sonoma, applications respond slowly when caps
lock is enabled
Product: Wine
Version: 9.0
Hardware: x86-64
OS: MacOS
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: winemac.drv
Assignee: wine-bugs(a)winehq.org
Reporter: bshanks(a)codeweavers.com
macOS Sonoma introduces new "accessories" that appear below the text insertion
point, like a caps lock indicator or an input language switcher (see [1]).
These also show up in Wine windows, since they use existing APIs like
NSTextInputClient to discover whether an insertion point is present and where
in the view it's located.
But, when an accessory like the caps lock indicator is displayed, interacting
with the window (say, pulling down menus) is extremely slow. There are
half-second pauses when displaying/hiding menus or other windows. This can be
easily reproduced using notepad.
I ran sample during the slowdown and was able to see the problem. Here's the
backtrace, with some unimportant lines removed:
3294 __OnMainThread_block_invoke (in winemac.so) + 16 [0x20b56ac10]
cocoa_event.m:507
3070 __macdrv_set_cocoa_window_frame_block_invoke (in winemac.so) + 100
[0x20b577dd4] cocoa_window.m:3464
3070 -[WineWindow setFrameFromWine:] (in winemac.so) + 557 [0x20b57258d]
cocoa_window.m:2012
3070 -[WineWindow setFrameAndWineFrame:] (in winemac.so) + 60 [0x20b5721dc]
cocoa_window.m:1938
3069 -[WineWindow setFrame:display:] (in winemac.so) + 136 [0x20b575008]
cocoa_window.m:2682
...
3066 -[WineWindow windowDidResize:skipSizeMove:] (in winemac.so) + 441
[0x20b5762d9] cocoa_window.m:3031
3066 -[TUINSCursorUIController invalidateCharacterCoordinates] (in
TextInputUIMacHelper) + 113 [0x7ffc12ad733a]
...
1643 -[WineContentView firstRectForCharacterRange:actualRange:] (in
winemac.so) + 196 [0x20b56ef24] cocoa_window.m:926
1643 -[WineEventQueue query:timeout:flags:] (in winemac.so) + 217
[0x20b56a209] cocoa_event.m:336
1643 -[WineApplicationController waitUntilQueryDone:timeout:processEvents:]
(in winemac.so) + 224 [0x20b55eb70] cocoa_app.m:350
Pulling menus down creates new HWNDs, I think initially with 1x1 size, and then
the frame is set. This triggers windowDidResize, which calls [[[self
contentView] inputContext] invalidateCharacterCoordinates]. This is sensible,
character coordinates might change when the window is resized. And when caps
lock is enabled, the system then immediately calls
firstRectForCharacterRange:actualRange: to refresh the character coordinates.
This triggers a Wine QUERY_IME_CHAR_RECT query. The problem is that the thread
that would answer the query is currently in OnMainThread(), things deadlock and
the query times out after 300 ms. I think it's called twice, that's how you get
600 ms.
The twist is that OnMainThread() does service queries while waiting, except for
QUERY_IME_CHAR_RECT, because of a 2016 bug with Japanese input in Excel
2003/2007/2010. If you undo 33610da6b4f5d9ad052173f005fdb735dc471445 so that
QUERY_IME_CHAR_RECT is handled normally, the timeout goes away and things work
normally.
This needs to be fixed, my first thought is that maybe there have been changes
in the IME system since 2016 so that the special-case for QUERY_IME_CHAR_RECT
is no longer needed? A first step is to revert the 2016 fix and see if the
Excel bug can still be reproduced.
[1]:
https://developer.apple.com/documentation/appkit/text_display/adopting_the_…
--
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=56202
Bug ID: 56202
Summary: Genshin impact cyrillic is ?????
Product: Wine
Version: 8.21
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: googa.vo1d(a)gmail.com
Distribution: ---
Created attachment 75910
--> https://bugs.winehq.org/attachment.cgi?id=75910
привет из ????
switchin in linux to cyrillics causes in genshin this ????
wrote
--
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=55921
Bug ID: 55921
Summary: EverQuest Titanium/Rof2 Clients: Slow Disk
Loading/Freezing?
Product: Wine
Version: 8.20
Hardware: arm
OS: Mac OS X
Status: UNCONFIRMED
Severity: minor
Priority: P2
Component: d3d
Assignee: wine-bugs(a)winehq.org
Reporter: rgirard59(a)yahoo.com
When you load up the game and try to click through the different screens by
clicking the buttons, the game seems to completely freeze for a brief period of
time between screen loads. Also, once you try to go to the character select
screen, or load into the game, it seems to take significantly longer to load
than either on parallels or a intel wine mac.
Another thing I had noticed that was odd is that when I used a fresh wine
install that didn't have the d3d9 redist june installed, the game would load up
fast between these screens like it should, however it would crash once loading
to the character select screen, due to missing d3d9 libraries I assume. Once I
installed that redist, the screens would start having the freezing issue.
Mac Sonoma, M2
--
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=56185
Bug ID: 56185
Summary: The GitLab Windows test job runs even when not needed
Product: WineHQ Gitlab
Version: unspecified
Hardware: x86-64
OS: Windows
Status: NEW
Severity: normal
Priority: P2
Component: gitlab-unknown
Assignee: wine-bugs(a)winehq.org
Reporter: fgouget(a)codeweavers.com
The GitLab Windows test jobs run even for MRs that don´t touch the tests.
For instance MR!4840 does not touch the test:
https://gitlab.winehq.org/wine/wine/-/merge_requests/4840/diffs
And yet test-win10-21h2-32 ran (same for the 64-bit tests job):
https://gitlab.winehq.org/fgouget/wine/-/jobs/48245
And the corresponding winetest.log file is empty which corresponds to an empty
winetest.args file. This makes sense since build-linux systematically generates
winetest.args and it's only in the Windows job that we check whether that file
is empty or not.
This could be avoided by generating dynamic child jobs in build-linux.
Then the check for whether it is necessary to run the Windows tests could be
done in build-linux and a 'dummy: rules: when: never' job could be generated if
nothing needs to be run.
See below for an example of a dynamic child job.
https://blog.devops.dev/using-dynamic-pipelines-in-gitlab-583cf4f6acd0
--
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=55700
Bug ID: 55700
Summary: Sniper Elite 4 has rendering lags in DX12 mode
Product: Wine
Version: 8.12
Hardware: x86-64
OS: Linux
Status: NEW
Keywords: regression
Severity: normal
Priority: P2
Component: d3d
Assignee: wine-bugs(a)winehq.org
Reporter: andrey.goosev(a)gmail.com
CC: gmascellani(a)codeweavers.com
Regression SHA1: 23a1642673fdc28380c0eff076734a9f712f8b4e
Distribution: ---
Same symptoms as of bug 55032.
--
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=56221
Bug ID: 56221
Summary: Quick start failure for Civilization 4
Product: Wine
Version: 9.0
Hardware: x86-64
URL: https://appdb.winehq.org/objectManager.php?sClass=appl
ication&iId=2514
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: Markus.Elfring(a)web.de
Distribution: ---
I tried another start out for the game “Civilization IV” by components from the
software package “wine 9.0-1670.1”.
Markus_Elfring@Sonne:~> wine 'C:\ProgramData\Microsoft\Windows\Start
Menu\Programs\Firaxis Games\Sid Meier'\''s Civilization 4\Sid Meier'\''s
Civilization 4 starten.lnk'
007c:fixme:hid:handle_IRP_MN_QUERY_ID Unhandled type 00000005
…
00bc:err:ntoskrnl:ZwLoadDriver failed to create driver
L"\\Registry\\Machine\\System\\CurrentControlSet\\Services\\SecDrv": c0000142
003c:fixme:service:scmdatabase_autostart_services Auto-start service L"SecDrv"
failed to start: 1114
0024:fixme:exec:SHELL_execute flags ignored: 0x00004000
…
I wondered then why a corresponding application window was not presented.
Markus_Elfring@Sonne:~> strace wine 'C:\ProgramData\Microsoft\Windows\Start
Menu\Programs\Firaxis Games\Sid Meier'\''s Civilization 4\Sid Meier'\''s
Civilization 4 starten.lnk'
…
exit_group(3) = ?
+++ exited with 3 +++
How will the clarification be continued with such information?
--
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=56228
Bug ID: 56228
Summary: err:module:import_dll Library WDFLDR.SYS
Product: Wine-staging
Version: 8.21
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: dz.wbdev(a)gmail.com
CC: leslie_alistair(a)hotmail.com, z.figura12(a)gmail.com
Distribution: ---
i want to install ad driver for zte modem and i get this error:
wine ZTEDrvSetup.exe.dat
127 ✘
0098:fixme:wineusb:query_id Unhandled ID query type 0x5.
0098:fixme:wineusb:query_id Unhandled ID query type 0x5.
0098:fixme:wineusb:query_id Unhandled ID query type 0x5.
0098:fixme:wineusb:query_id Unhandled ID query type 0x5.
0098:fixme:wineusb:query_id Unhandled ID query type 0x5.
0098:fixme:hid:handle_IRP_MN_QUERY_ID Unhandled type 00000005
0098:fixme:hid:handle_IRP_MN_QUERY_ID Unhandled type 00000005
0098:fixme:hid:handle_IRP_MN_QUERY_ID Unhandled type 00000005
0098:fixme:hid:handle_IRP_MN_QUERY_ID Unhandled type 00000005
00e0:err:module:import_dll Library WDFLDR.SYS (which is needed by
L"C:\\windows\\system32\\drivers\\DBUtilDrv2.sys") not found
00e0:err:ntoskrnl:ZwLoadDriver failed to create driver
L"\\Registry\\Machine\\System\\CurrentControlSet\\Services\\DBUtilDrv2":
c0000142
003c:fixme:service:scmdatabase_autostart_services Auto-start service
L"DBUtilDrv2" failed to start: 1114
0024:fixme:file:NtLockFile I/O completion on lock not implemented yet
0024:fixme:apphelp:ApphelpCheckInstallShieldPackage stub: 0055F04C
L"C:\\users\\pc\\Temp\\{E5BBC2B9-701D-439F-B0CA-4A221FF3A0DF}\\Disk1\\data1.hdr"
0024:fixme:sfc:SRSetRestorePointA 010E8570 010EC070
0024:fixme:sfc:SRSetRestorePointA 010E8570 010EC070
0138:err:ole:std_release_marshal_data could not map object ID to stub manager,
oxid=13400000138, oid=2
0138:err:ole:CoReleaseMarshalData StdMarshal ReleaseMarshalData failed with
error 0x8001011d
how to fix it?
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=48908
Bug ID: 48908
Summary: Dr Brain 3 broken color palette
Product: Wine
Version: 5.5
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: maxmusterm(a)gmail.com
Distribution: ---
Created attachment 66865
--> https://bugs.winehq.org/attachment.cgi?id=66865
Example image of dr brain running in xephyr
Dr Brain 3 is a 16bit Windows program that requires 8bit colors. So to get it
running we have to use one of these methods
https://wiki.winehq.org/256_Color_Mode
I tried every last one of those methods and every method leads to the same
result you can see in the image attached to this bug.
No error message is printed out by wine. I encountered this bug a few years ago
for the first time, but didn't open a bug report for it, since I thought this
could be a problem with the virtual X.
However when viewing images in the Xephyr session all colors are displayed
correctly.
Right now the only way for me to run this game is using dosbox with win3.1 or
another form of emulation.
--
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=56226
Bug ID: 56226
Summary: Myst Masterpiece Edition won't start in Wine 4.6 and
later
Product: Wine
Version: 4.6
Hardware: x86
OS: Linux
Status: NEW
Severity: normal
Priority: P2
Component: d3d
Assignee: wine-bugs(a)winehq.org
Reporter: alexhenrie24(a)gmail.com
Distribution: ---
Created attachment 75938
--> https://bugs.winehq.org/attachment.cgi?id=75938
Backtrace from crash dialog
Steps to reproduce:
1. Set the Windows version to Windows 95 in winecfg
2. Run `wine Setup.exe` and click "Avançar" twice, "Next" once, and "Terminar"
once
3. Run `wine 'C:\Program Files (x86)\Red Orb\Myst Masterpiece
Edition\Myst.exe'`
The game crashes before it can play the intro video or draw any UI elements.
`git bisect` says:
b15685355c45c0fffb4f0dc5518c8c6ee0f595c6 is the first bad commit
commit b15685355c45c0fffb4f0dc5518c8c6ee0f595c6
Author: Henri Verbeet <hverbeet(a)codeweavers.com>
Date: Fri Apr 12 17:20:47 2019 +0430
wined3d: Explicitly create the implicit swapchain.
Signed-off-by: Henri Verbeet <hverbeet(a)codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard(a)winehq.org>
I'm attaching the backtrace from the crash dialog, but I'm not sure if it's
relevant to this bug or not. There was a crash dialog before commit b15685355c4
too, but the game would still start after closing it.
$ sha256sum MystMasterpieceEdition.iso
c825080e32722a5a7bd4de330c66d6042a7904e03adb33ec886da2ba24a5c251
--
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=9304
Summary: Temple of Elemental Evil demo doesn't work - gui
vanishing
Product: Wine
Version: 0.9.43.
Platform: Other
OS/Version: other
Status: UNCONFIRMED
Severity: enhancement
Priority: P2
Component: wine-gui
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: riklaunim(a)gmail.com
ToEE has a demo:
ftp://ftp.infogrames.net/demos/toee/ToEE_Demo.exe
Which install on wine 0.9.43 but it doesn't start properly (also on older
wines). The console output:
################
fixme:toolhelp:CreateToolhelp32Snapshot Unimplemented: heap list snapshot
fixme:toolhelp:CreateToolhelp32Snapshot Unimplemented: heap list snapshot
fixme:toolhelp:CreateToolhelp32Snapshot Unimplemented: heap list snapshot
fixme:toolhelp:CreateToolhelp32Snapshot Unimplemented: heap list snapshot
fixme:toolhelp:CreateToolhelp32Snapshot Unimplemented: heap list snapshot
fixme:toolhelp:CreateToolhelp32Snapshot Unimplemented: heap list snapshot
fixme:toolhelp:CreateToolhelp32Snapshot Unimplemented: heap list snapshot
fixme:toolhelp:CreateToolhelp32Snapshot Unimplemented: heap list snapshot
fixme:toolhelp:CreateToolhelp32Snapshot Unimplemented: heap list snapshot
fixme:toolhelp:CreateToolhelp32Snapshot Unimplemented: heap list snapshot
fixme:toolhelp:CreateToolhelp32Snapshot Unimplemented: heap list snapshot
fixme:toolhelp:CreateToolhelp32Snapshot Unimplemented: heap list snapshot
fixme:toolhelp:CreateToolhelp32Snapshot Unimplemented: heap list snapshot
fixme:toolhelp:CreateToolhelp32Snapshot Unimplemented: heap list snapshot
fixme:wininet:INET_QueryOptionHelper Stub! 40
fixme:wininet:INET_QueryOptionHelper INTERNET_OPTION_CONNECTED_STATE: semi-stub
fixme:shdocvw:navigate_url Unsupported arguments
err:ole:CoGetClassObject class {25336920-03f9-11cf-8fd0-00aa00686f13} not
registered
err:ole:CoGetClassObject class {25336920-03f9-11cf-8fd0-00aa00686f13} not
registered
err:ole:CoGetClassObject no class object {25336920-03f9-11cf-8fd0-00aa00686f13}
could be created for context 0x3
err:shdocvw:navigate Could not create HTMLDocument: 80040154
fixme:shdocvw:OleInPlaceObject_InPlaceDeactivate (0x1aa3b0)
fixme:shdocvw:OleObject_Close (0x1aa3b0)->(1)
#############################
The game window shows for a second and disapper (at the end of those error
messages)
--
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=54349
Bug ID: 54349
Summary: 'wine-mono' package doesn't re-ask for installation if
you click cancel and subsequent run a .NET program (by
contrast, the Gecko package does)
Product: Wine
Version: 8.0-rc4
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: NM64+bugs.winehq.org(a)PM.me
Distribution: ---
Created attachment 73920
--> https://bugs.winehq.org/attachment.cgi?id=73920
video demonstration of the full process for reproducing the issue
(tested with wine v8.0-rc4 since v8.0-rc5 isn't yet available in Mint's package
manager)
Simply put, when the message appears asking to install the 'wine-mono' package,
if you click cancel and then subsequently try to run a program that requires
.NET, it will not ask about installing the 'wine-mono' package again.
By contrast, if you try to run a program that requires the Gecko package, it
will always ask if you want to install the Gecko package even if you click
cancel - it will still ask again the next time you run the program.
See the attached video file on fully reproducing the issue; it was tested using
the Mint 21.1 Cinnamon live ISO.
--
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=56038
Bug ID: 56038
Summary: The Gladiators Galactic Circus Games crashes when
starting (installs ok)
Product: Wine
Version: 9.0-rc2
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: cedric.dewijs(a)eclipso.eu
Distribution: ---
Game: The Gladiators Galactic Circus Games 2-CD version
https://www.myabandonware.com/game/the-gladiators-galactic-circus-games-glu…
Steps to reproduce:
$ rm -rf ~/wine-tmp/
$ mkdir ~/wine-tmp
$ export WINEPREFIX=~/wine-tmp
$ wine /run/media/cedric/THE_GLADIATORS_1/TheGladiators.exe Now the installer
starts
press Yes, and next
enter the username/organisation and CD-KEY, next
accept the default location, next
next, install. Now the installer shows a progress bar. the progressbar stops at
64%
insert CD2
click finish now the installer exits
wine ~/wine-tmp/drive_c/Program\ Files\ \(x86\)/The\ Gladiators/The\
Gladiators.exe
Now the game crashes with this message: "Exception EExternalException danks le
module ntdll.dll a 00023050 exceptionn externe C0000025"
Software:
$ wine --version
wine-9.0-rc2 from this aur package:
https://aur.archlinux.org/packages/wine-wow64
$ uname -a
Linux cedric 6.6.7-arch1-1 #1 SMP PREEMPT_DYNAMIC Thu, 14 Dec 2023 03:45:42
+0000 x86_64 GNU/Linux
Running lxde on Xorg
Hardware:
0b:00.0 VGA compatible controller: Advanced Micro Devices, Inc. [AMD/ATI] Navi
10 [Radeon RX 5600 OEM/5600 XT / 5700/5700 XT] (rev c4)
--
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=27668
Summary: SecuROM 4.X: SpellForce won't recognize original CD
during install/play
Product: Wine
Version: 1.3.22
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: ntdll
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: frans.kool(a)gmail.com
Created an attachment (id=35387)
--> (http://bugs.winehq.org/attachment.cgi?id=35387)
The basic log while running wine on a copied installation of Spellforce
While trying to install Spellforce - the Order of the Dawn v1.01 a window pops
up notifying "Incompatible system configuration", followed by "Please insert
the original Spellforce CD1 into your CD/DVD-drive.".
After this, install immediately aborts and thus leaves the game uninstallable.
Copying it from a windows installation and running it generates the same error
message.
Wine produces this fixme which I think is the cause:
fixme:ntdll:server_ioctl_file Unsupported ioctl 2d1400 (device=2d access=0
func=500 method=0)
I ran Protection ID v0.6.4.0 July and it detects SecuROM 4.88.00
This is why I did not add my comment to bug #21448, since that one is clearly
about SecuROM 5.x.
I added the log as attachement, please let me know if I can run additional
DEBUG logs for more information.
--
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=34658
Bug #: 34658
Summary: Bioshock 2 runs out of GL memory quickly
Product: Wine
Version: 1.7.3
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: directx-d3d
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: descent1(a)gmx.net
Classification: Unclassified
Created attachment 46195
--> http://bugs.winehq.org/attachment.cgi?id=46195
Console output
Note: This is about the new Bioshock 2 version on Steam (1.5.0.019) which has
GFWL and SecuROM officially removed - no cracks have been used!
When playing single player in Bioshock 2 on highest settings, the game runs out
of memory with this message: "err:d3d:resource_init Failed to allocate system
memory."
I'm sure that I got this message as well a lot of times, but for some reason,
the message is now different:
"err:d3d_surface:surface_allocate_surface >>>>>>>>>>>>>>>>> GL_OUT_OF_MEMORY"
I've set my video RAM amount in the registry to 1024 MB which is correct for my
GPU. If i decrease it to e.g. 768 MB, the game crashes a lot sooner.
See console output attached.
I tried those wine versions: 1.5.12, 1.6, 1.7.3
Tested on openSUSE 12.2 x86
NVidia GeForce GTX 460 (1024 MB RAM) using driver version 319.49
--
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=56089
Bug ID: 56089
Summary: AceSpeeder2 crashes on starting the game
Product: Wine
Version: 9.0-rc3
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: cedric.dewijs(a)eclipso.eu
Distribution: ---
Created attachment 75755
--> https://bugs.winehq.org/attachment.cgi?id=75755
backtrace
To reproduce:
Download AceSpeeder2
https://www.myabandonware.com/download/195r-acespeeder2
$ rm -rf ~/wine-tmp/
$ mkdir ~/wine-tmp
$ export WINEPREFIX=~/wine-tmp
$ cd ~/wine-tmp
$ unzip ~/Downloads/AceSpeeder2_Win_EN.zip
$ wine acespeeder2.exe
$ wine ~/wine-tmp/drive_c/Program\ Files\ \(x86\)/AceSpeeder2/acespeeder2.exe
Now the game crashes, resulting in a backtrace
Console output:
[jose@cedric-work-laptop wine-tmp]$ rm -rf ~/wine-tmp/
[jose@cedric-work-laptop wine-tmp]$ mkdir ~/wine-tmp
[jose@cedric-work-laptop wine-tmp]$ export WINEPREFIX=~/wine-tmp
[jose@cedric-work-laptop wine-tmp]$ cd ~/wine-tmp
[jose@cedric-work-laptop wine-tmp]$ unzip ~/Downloads/AceSpeeder2_Win_EN.zip
Archive: /home/jose/Downloads/AceSpeeder2_Win_EN.zip
inflating: acespeeder2.exe
[jose@cedric-work-laptop wine-tmp]$ wine acespeeder2.exe
002c:fixme:actctx:parse_depend_manifests Could not find dependent assembly
L"Microsoft.Windows.Common-Controls" (6.0.0.0)
004c:fixme:actctx:parse_depend_manifests Could not find dependent assembly
L"Microsoft.Windows.Common-Controls" (6.0.0.0)
0054:fixme:actctx:parse_depend_manifests Could not find dependent assembly
L"Microsoft.Windows.Common-Controls" (6.0.0.0)
004c:err:ole:StdMarshalImpl_MarshalInterface Failed to create ifstub, hr
0x80004002
004c:err:ole:CoMarshalInterface Failed to marshal the interface
{6d5140c1-7436-11ce-8034-00aa006009fa}, hr 0x80004002
004c:err:ole:apartment_get_local_server_stream Failed: 0x80004002
004c:err:ole:start_rpcss Failed to open RpcSs service
0054:err:ole:StdMarshalImpl_MarshalInterface Failed to create ifstub, hr
0x80004002
0054:err:ole:CoMarshalInterface Failed to marshal the interface
{6d5140c1-7436-11ce-8034-00aa006009fa}, hr 0x80004002
0054:err:ole:apartment_get_local_server_stream Failed: 0x80004002
0090:fixme:file:NtLockFile I/O completion on lock not implemented yet
0090:fixme:ntdll:NtQuerySystemInformation info_class
SYSTEM_PERFORMANCE_INFORMATION
0090:fixme:msi:internal_ui_handler internal UI not implemented for message
0x0b000000 (UI level = 1)
0090:fixme:msi:internal_ui_handler internal UI not implemented for message
0x0b000000 (UI level = 1)
00f0:fixme:msg:pack_message msg 14 (WM_ERASEBKGND) not supported yet
0118:fixme:hid:handle_IRP_MN_QUERY_ID Unhandled type 00000005
0118:fixme:hid:handle_IRP_MN_QUERY_ID Unhandled type 00000005
0118:fixme:hid:handle_IRP_MN_QUERY_ID Unhandled type 00000005
0118:fixme:hid:handle_IRP_MN_QUERY_ID Unhandled type 00000005
wine: configuration in L"/home/jose/wine-tmp" has been updated.
[jose@cedric-work-laptop wine-tmp]$ 0154:err:menubuilder:InvokeShellLinker
failed to extract icon from L"C:\\Program Files
(x86)\\AceSpeeder2\\manual_jpn.htm"
014c:err:menubuilder:InvokeShellLinker failed to extract icon from
L"C:\\Program Files (x86)\\AceSpeeder2\\manual_eng.htm"
015c:err:menubuilder:InvokeShellLinker failed to extract icon from
L"C:\\Program Files (x86)\\AceSpeeder2\\raingraph_website.url"
[jose@cedric-work-laptop wine-tmp]$
[jose@cedric-work-laptop wine-tmp]$ wine ~/wine-tmp/drive_c/
Program Files/ ProgramData/ windows/
Program Files (x86)/ users/
[jose@cedric-work-laptop wine-tmp]$ wine ~/wine-tmp/drive_c/Program\ Files\
\(x86\)/
AceSpeeder2/ Internet Explorer/ Windows NT/
Common Files/ Windows Media Player/
[jose@cedric-work-laptop wine-tmp]$ wine ~/wine-tmp/drive_c/Program\ Files\
\(x86\)/AceSpeeder2/
acespeeder2.asm epuninst.exe raingraph_website.url
acespeeder2.exe manual_eng.htm
copyright.txt manual_jpn.htm
[jose@cedric-work-laptop wine-tmp]$ wine ~/wine-tmp/drive_c/Program\ Files\
\(x86\)/AceSpeeder2/acespeeder2.exe
0084:fixme:hid:handle_IRP_MN_QUERY_ID Unhandled type 00000005
0084:fixme:hid:handle_IRP_MN_QUERY_ID Unhandled type 00000005
0084:fixme:hid:handle_IRP_MN_QUERY_ID Unhandled type 00000005
0084:fixme:hid:handle_IRP_MN_QUERY_ID Unhandled type 00000005
0024:fixme:ntdll:NtQuerySystemInformation info_class
SYSTEM_PERFORMANCE_INFORMATION
wine: Unhandled page fault on read access to 0000000C at address 0049EE86
(thread 0024), starting debugger...
011c:fixme:dbghelp:elf_search_auxv can't find symbol in module
011c:fixme:dbghelp:elf_search_auxv can't find symbol in module
011c:fixme:dbghelp:elf_search_auxv can't find symbol in module
011c:fixme:dbghelp:elf_search_auxv can't find symbol in module
011c:fixme:dbghelp:elf_search_auxv can't find symbol in module
011c:fixme:dbghelp:elf_search_auxv can't find symbol in module
011c:fixme:dbghelp:elf_search_auxv can't find symbol in module
011c:fixme:dbghelp:elf_search_auxv can't find symbol in module
011c:fixme:dbghelp:elf_search_auxv can't find symbol in module
011c:fixme:dbghelp:elf_search_auxv can't find symbol in module
011c:fixme:dbghelp:elf_search_auxv can't find symbol in module
011c:fixme:dbghelp:elf_search_auxv can't find symbol in module
011c:fixme:dbghelp:elf_search_auxv can't find symbol in module
011c:fixme:dbghelp:elf_search_auxv can't find symbol in module
011c:fixme:dbghelp:elf_search_auxv can't find symbol in module
011c:fixme:dbghelp:elf_search_auxv can't find symbol in module
011c:fixme:dbghelp:elf_search_auxv can't find symbol in module
011c:fixme:dbghelp:elf_search_auxv can't find symbol in module
011c:fixme:dbghelp:elf_search_auxv can't find symbol in module
011c:fixme:dbghelp:elf_search_auxv can't find symbol in module
011c:fixme:dbghelp:elf_search_auxv can't find symbol in module
011c:fixme:dbghelp:elf_search_auxv can't find symbol in module
011c:fixme:dbghelp:elf_search_auxv can't find symbol in module
011c:fixme:dbghelp:elf_search_auxv can't find symbol in module
011c:fixme:dbghelp:elf_search_auxv can't find symbol in module
011c:fixme:dbghelp:elf_search_auxv can't find symbol in module
011c:fixme:dbghelp:elf_search_auxv can't find symbol in module
011c:fixme:dbghelp:elf_search_auxv can't find symbol in module
011c:fixme:dbghelp:elf_search_auxv can't find symbol in module
011c:fixme:dbghelp:elf_search_auxv can't find symbol in module
011c:fixme:dbghelp:elf_search_auxv can't find symbol in module
011c:fixme:dbghelp:elf_search_auxv can't find symbol in module
011c:fixme:dbghelp:elf_search_auxv can't find symbol in module
011c:fixme:dbghelp:elf_search_auxv can't find symbol in module
011c:fixme:dbghelp:elf_search_auxv can't find symbol in module
011c:fixme:dbghelp:elf_search_auxv can't find symbol in module
011c:fixme:dbghelp:elf_search_auxv can't find symbol in module
[jose@cedric-work-laptop wine-tmp]$ wine: Read access denied for device
L"\\??\\Z:\\", FS volume label and serial are not available.
wine: Read access denied for device L"\\??\\Z:\\", FS volume label and serial
are not available.
wine: Read access denied for device L"\\??\\Z:\\", FS volume label and serial
are not available.
wine: Read access denied for device L"\\??\\Z:\\", FS volume label and serial
are not available.
wine: Read access denied for device L"\\??\\Z:\\", FS volume label and serial
are not available.
wine: Read access denied for device L"\\??\\Z:\\", FS volume label and serial
are not available.
wine: Read access denied for device L"\\??\\Z:\\", FS volume label and serial
are not available.
wine: Read access denied for device L"\\??\\Z:\\", FS volume label and serial
are not available.
wine: Read access denied for device L"\\??\\Z:\\", FS volume label and serial
are not available.
Software:
Arch linux, Xorg (not wayland)
$ wine --version
wine-9.0-rc3f rom this aur PKGBUILD:
https://bugs.winehq.org/attachment.cgi?id=75744
$ uname -a
Linux cedric-work-laptop 6.6.8-arch1-1 #1 SMP PREEMPT_DYNAMIC Thu, 21 Dec 2023
19:01:01 +0000 x86_64 GNU/Linux
Running lxde on Xorg
Hardware:
$ lscpi
03:00.0 Display controller: Advanced Micro Devices, Inc. [AMD/ATI] Navi 22
[Radeon RX 6700/6700 XT/6750 XT / 6800M/6850M XT] (rev c3)
07:00.0 VGA compatible controller: Advanced Micro Devices, Inc. [AMD/ATI]
Cezanne [Radeon Vega Series / Radeon Vega Mobile Series] (rev c4)
$ xrandr --listproviders
Providers: number : 2
Provider 0: id: 0x44 cap: 0xf, Source Output, Sink Output, Source Offload, Sink
Offload crtcs: 4 outputs: 2 associated providers: 1 name:modesetting
Provider 1: id: 0x124 cap: 0xf, Source Output, Sink Output, Source Offload,
Sink Offload crtcs: 6 outputs: 1 associated providers: 1 name:modesetting
--
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=28863
Bug #: 28863
Summary: SecuROM 8.xx: games require activation on each start
Product: Wine
Version: 1.3.31
Platform: x86
OS/Version: Linux
Status: NEW
Keywords: obfuscation
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: gyebro69(a)gmail.com
Classification: Unclassified
Created attachment 37073
--> http://bugs.winehq.org/attachment.cgi?id=37073
7zipped +relay,+tid,+file,+reg log (uncompressed 118 MB)
Two of my games obtained via Gamersgate digital distribution service are damned
with Securom 8.03.xxxx protection (online activation). The games are
Tomb Raider: Legend
GTA San Andreas
After installation the Securom activation dialog kicked in, requesting the
serial number. Activation was successful and the games started fine.
Much to my surprise, next time I launched these games, Securom required a new
activation. This happens on each game start (I didn't alter the wineprefix
where the games are installed in any way).
I installed one of the games in Win XP SP3 (running under Vbox): Securom works
there, requiring activation only on the first launch.
Here I'm attaching a +relay,+tid,+file,+reg debug log, hopefully someone will
find some clues in it. The log was created by getting through the activation
process (the game wasn't started at the end of activation).
I'm totally dumb at reading such logs but here's what I found:
1. Securom tries to open certain files under 'C:\users\<username>\Application
Data\DSS\Product Activation\ User Data\<very long sequence\'
The files named dss_v8_01.dat and dss_v8_01.bak. These files as well as the
whole directory structure are missing in both Wine and Windows so this can't be
the problem.
2. The corresponding Securom registry entry is located under HKCU/Software/DSS.
This contains several subkeys, most of them contain binary data, but one of
them (Meta Data\Information) contains strange things. Although this subkey can
be exported via Wine regedit, it cannot be re-imported correctly.
Here is an excerpt what this sub key contains (obtained via Process Monitor
under Windows):
Type: REG_SZ, Length: 2,600, Data: <?xml version="1.0"?>
<UserData>
<ExeResource>
<Path>C:\Program Files\Rockstar Games\GTA San Andreas\gta_sa.exe</Path>
</ExeResource>
<CPA>e358d8ee7c711c17f463b620e750df01e896d4e1bdfc0e37d2357859698229f6e896d4e1bdfc0e37cdb6c31028aa1089</CPA>
<OfflineInformation>
<LASTACCESSDATE>000fb756</LASTACCESSDATE>
<INSTALLDATE>000fb756</INSTALLDATE>
<COUNTER>00000000</COUNTER>
<FIRSTTIME>00000001</FIRSTTIME>
<PERIODIC>00000000</PERIODIC>
<PERIODICDAYS>00000000</PERIODICDAYS>
</OfflineInformation>
<ProductActivation>
...
Maybe something goes wrong when creating/reading this key under Wine thus
Securom considers it invalid?
Fedora 15 x86
gcc version 4.6.1 20110908 (Red Hat 4.6.1-9) (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=56215
Bug ID: 56215
Summary: SpeedWave buttons can't be functional
Product: Wine
Version: 9.0
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: major
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: cupcapcorn(a)yahoo.co.jp
Distribution: ---
On Fedora 39 and wine 9.0 I can install SpeedWave (Application to accelerate
the speed of wave and mp3 file) and I try to launch this applicantion and it
takes long time for window to appear. And so any button can't be functional,
but only sliders can be moved.
--
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=31076
Bug #: 31076
Summary: WinDirStat problem after clicking on file in graphical
analysis
Product: Wine
Version: 1.5.7
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: computergeoffrey(a)zoho.com
Classification: Unclassified
Created attachment 40789
--> http://bugs.winehq.org/attachment.cgi?id=40789
Exception details
"WinDirStat encountered an error and must be closen down." after clicking on a
file in the graphical output window.
Download here: http://windirstat.info/download.html
See also attachment.
--
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=31145
Bug #: 31145
Summary: WinDirStat right clicking on a directory and selecting
properties says "invalid parameter"
Product: Wine
Version: 1.5.8
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: computergeoffrey(a)zoho.com
Classification: Unclassified
After analysis of a directory, right clicking on a directory (doesn't matter
which, as long it's in the "scope" of the analysis) and selecting properties
shows the error message "invalid parameter".
--
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=56212
Bug ID: 56212
Summary: Crash on using Vulkan under wow64 with wayland
Product: Wine
Version: unspecified
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: winevulkan
Assignee: wine-bugs(a)winehq.org
Reporter: yaroslav.isakov(a)gmail.com
Distribution: ---
Hello! I'm testing new features of Wine, namely WoW64 mode, Wayland driver, and
Vulkan (as it's the only way to run games on Wayland ATM), but it crashes with
errors mentioning wine_vkAllocateMemory.
The good example is SuperTuxKart (it's the only free pure vulkan game with
32-bit support I found) - when I run i686 binary (version 1.4) with
--render-driver=vulkan, it crashes with tons of messages:
0120:fixme:vulkan:wine_vkAllocateMemory Using VK_EXT_external_memory_host
0140:err:virtual:allocate_virtual_memory out of memory for allocation, base
(nil) size 02000000
0140:err:vulkan:wine_vkAllocateMemory NtAllocateVirtualMemory failed
013c:err:virtual:allocate_virtual_memory out of memory for allocation, base
(nil) size 02000000
When I'm trying to run game via dxvk, it fails with similar message:
0148:fixme:vulkan:wine_vkAllocateMemory Using VK_EXT_external_memory_host
0148:fixme:vulkan:wine_vkAllocateMemory Not found compatible memory type
Same game, amd64 binary with vulkan - works (also, no problems running dxvk
with 64-bit game, too).
--
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=51446
Bug ID: 51446
Summary: VICE X64.exe crashing (from within C64forever from
cloanto)
Product: Wine-staging
Version: 6.12
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: marcok(a)web.de
CC: leslie_alistair(a)hotmail.com, z.figura12(a)gmail.com
Distribution: ---
Created attachment 70295
--> https://bugs.winehq.org/attachment.cgi?id=70295
Backtrace
hi!
>From within c64forever x64.exe is crashing. See attached report
--
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=56163
Bug ID: 56163
Summary: Unigine Sanctuary is badly broken with OGL/WineD3D
(only works with Gallium Nine)
Product: Wine
Version: 9.0-rc4
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: opengl
Assignee: wine-bugs(a)winehq.org
Reporter: kle(a)bluewin.ch
Distribution: ---
Created attachment 75862
--> https://bugs.winehq.org/attachment.cgi?id=75862
Unigine Sanctuary CLI output OpenGL
Hi all
Here follows a bug report about the Unigine Sanctuary benchmark which is
unfortunately broken with OpenGL/WineD3D.
I have tested this recently with Wine 9.0-rc4 and it works stable only when
Gallium Nine is used. At the CLI there is a "Failed to load libGL: libGL.so.1"
information present. See the CLI output file for more details.
For me, the OGL path was always broken while the D3D10 mode had worked (with
some flaws) at some point with Wine 8.x. The D3D11 renderer was not intensively
tested because the corresponding D3D11 support was incomplete in earlier Wine /
WineD3D releases.
And finally, there is an additional strange problem concerning the native
"openal32.dll" file present which can lead to a hard system hang. This never
occurred on Wine builds which had an in-built "openal32.dll" file. Will open a
separate issue report about that.
This was tested under Kubuntu 22.04 LTS with Mesa
24.0-git2401110600.813b19-oibaf-j (git-813b193 2024-01-11 jammy-oibaf-ppa). The
system is an old iMac 12,2 containing an Radeon HD 6770M GPU which is using the
r600 Mesa driver.
Note, the Unigine Sanctuary benchmark can still be downloaded from the original
website:
https://benchmark.unigine.com/sanctuary
--
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=51925
Bug ID: 51925
Summary: TeXLive linux binaries are launched incorrectly from
Wine
Product: Wine
Version: 6.20
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: ntdll
Assignee: wine-bugs(a)winehq.org
Reporter: oleh.nyk(a)gmail.com
Distribution: ---
Linux TeXLive binaries can be successfully started, e.g., by WinEdt shell under
Wine. Nevertheless, TeXLive components use mktex.opt file to find out the
platform they are run on, based on environment variables. As Wine leaves
ComSpec variable set, mktex.opt deduces it is on Windows, but cannot find dirs
for fonts and metrics, hence puts temporary files in a working directory.
Steps to reproduce (assume TeXLive distribution is installed and working):
1. Unpack winedt-1.41e
http://ftp.itam.mx/pub/academico/investig/latex/LaTeXWin/winedt16.zip
2. Start winedt.exe and open any LaTeX file
3. Change LaTeX entry in menu to make it start LaTeX in XTerm, e.g.
"z:\usr\bin\xterm" -T LaTeX -e /usr/bin/latex "%N%T"
4. Run LaTeX and observe *.tfm files created in the directory with LaTeX
document instead of the proper directories for this.
Here is a part of the output of "env | sort" in XTerm run from WinEdt:
...
CommonProgramFiles=C:\Program Files (x86)\Common Files
CommonProgramFiles(x86)=C:\Program Files (x86)\Common Files
CommonProgramW6432=C:\Program Files\Common Files
COMPUTERNAME=SHELTER
ComSpec=C:\windows\system32\cmd.exe
CPLUS_INCLUDE_PATH=/opt/kde3/lib64/qt3/include
DISPLAY=:0.0
FVWM_64=64
...
To avoid this, there should be a way to prohibit Wine to pass some Windows
environment variables to Unix binaries.
--
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=43102
Bug ID: 43102
Summary: GTA V keyboard issue
Product: Wine
Version: 2.9
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: xsellier(a)gmail.com
Distribution: Debian
Hey folks,
Thank you for you amazing work here.
I have a bug when I try to play GTA V. This bug is related to the keyboard.
*How to reproduce it*
1. Install wine 2.9 with following components:
- d3dcompiler_43
- d3dx11
2. Run winecfg and set the windows version to Windows XP
3. Install steam
4. Install GTA V
5. Run GTA V (login to the social club)
6. Once the game has started do the ALT+TAB trick
(https://bugs.winehq.org/show_bug.cgi?id=42330#c18)
7. Press any key of the keyboard (it works flawlessly)
8. Select the Story Mode
9. Once in game, press any key from the keyboard. Now the game is freezing for
a 2 second and it will work again. This issue is related to the keyboard,
because if you are using a controller (xbox for example) it works without any
stutter. But press a key of the keyboard and the freeze is coming (sorry for
this one).
*Observation*
- The sound is still playing
- Only the rendering is frozen
--
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=51565
Bug ID: 51565
Summary: Wine filesystem access time year 2038 problem:
functions return ERROR_FILE_NOT_FOUND,
STATUS_UNSUCCESSFUL
Product: Wine
Version: 6.13
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: ntdll
Assignee: wine-bugs(a)winehq.org
Reporter: iam(a)valdikss.org.ru
Distribution: ---
Wine does not handle directories and files with access time past year 2038. The
functions like FindFirstFileA return ERROR_FILE_NOT_FOUND upon accessing the
directory for example.
How to reproduce:
mkdir testdir
touch -a -d 'Fri, 06 Aug 2039 15:01:42 +0300' testdir
wine cmd.exe /C "dir testdir"
Result:
0104:fixme:file:errno_to_status Converting errno 75 to STATUS_UNSUCCESSFUL
Volume in drive Z has no label.
Volume Serial Number is adda-a790
Directory of Z:\home\valdikss\temp\testdir
File not found.
--
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=56201
Bug ID: 56201
Summary: When opening a program SwissManager, the application
shows an error and unable to open.
Product: Wine
Version: unspecified
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: wmmolema(a)outlook.com
Distribution: ---
Created attachment 75909
--> https://bugs.winehq.org/attachment.cgi?id=75909
Back Trace File
When opening an application SwissManager, an error occurs.
Exception EExternalException in Modul ntdll.dll
The application then closes.
Unable to get it to load.
--
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=54873
Bug ID: 54873
Summary: 32-bit prefixes cannot be used with new wow64 mode
Product: Wine
Version: 8.6
Hardware: x86-64
OS: Mac OS X
Status: NEW
Keywords: download, wow64
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: austinenglish(a)gmail.com
austin@mac % rm -rf ~/.wine ; WINEARCH=win32 /Applications/Wine\
Devel.app/Contents/Resources/wine/bin/wine winecfg
preloader: Warning: failed to reserve range 0000000000010000-0000000000110000
wine: created the configuration directory '/Users/austin/.wine'
wine: '/Users/austin/.wine' is a 32-bit installation, it cannot support 64-bit
applications.
This also happened when testing on my Linux machine.
This prevent using 32-bit prefixes. Which means applications that don't support
64-bit windows can't be run (and we won't be able to report running as a
Windows version prior to Server 2003/XP).
--
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=29473
Bug #: 29473
Summary: IconsExtract: Requesting "File Properties" errors-out.
Product: Wine
Version: 1.3.35
Platform: x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: jthomas97411(a)yahoo.com
Classification: Unclassified
Simply run IconsExtract in Wine, search for icons somewhere, select a found
icon, and try to open the file properties for that icon. This is done either by
pressing F8 or clicking "File" in the upper-right, and then under the "File"
menu press "File Properties".
The sole terminal output is this:
fixme:exec:SHELL_execute flags ignored: 0x0000000c
This is true for IconsExtract version 1.46 and version 1.47. Have not seen any
Wine version succeed in displaying the file properties.
In Windows, "File Properties" brings up the same exact dialogue as
right-clicking the file that contains the icon and clicking "properties."
IconsExtract is a free download: http://www.nirsoft.net/utils/iconsext.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.
https://bugs.winehq.org/show_bug.cgi?id=55424
Bug ID: 55424
Summary: user32:cursoricon - test_SetCursor() sometimes fails
on w10pro64v2004
Product: Wine
Version: unspecified
Hardware: x86-64
OS: Windows
Status: NEW
Severity: normal
Priority: P2
Component: user32
Assignee: wine-bugs(a)winehq.org
Reporter: fgouget(a)codeweavers.com
user32:cursoricon - test_SetCursor() sometimes fails on w10pro64v2004:
cursoricon.c:2529: Test failed: expected global cursor 00010003
See https://test.winehq.org/data/patterns.html#user32:cursoricon
This failure first happened on 2023-06-05, always with the same cursor handle
and always on w10pro64v2004:
* 2023-06-05 win2004_newtb-w10pro64v2004-32
* 2023-06-07 win2004_newtb-w10pro64v2004-32
* 2023-06-16 win2004_newtb-w10pro64v2004-32
* 2023-06-19 win2004_newtb-w10pro64v2004-32
* 2023-06-28 win2004_newtb-w10pro64v2004-32
* 2023-08-08 win2004_newtb-w10pro64v2004-32
* 2023-08-08 win2004_newtb-w10pro64v2004-64
The 2023-08-08 final screenshots both show a Windows update window that should
not be there. Maybe it is related.
--
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=54613
Bug ID: 54613
Summary: ieframe:ie times out when run without elevated
privileges on Windows 8
Product: Wine
Version: unspecified
Hardware: x86-64
OS: Windows
Status: NEW
Severity: normal
Priority: P2
Component: ieframe
Assignee: wine-bugs(a)winehq.org
Reporter: fgouget(a)codeweavers.com
ieframe:ie times out when run without elevated privileges on Windows 8.
ieframe:ie start dlls/ieframe/tests/ie.c
ieframe:ie:0fe4 done (258) in 120s 0B
See https://test.winehq.org/data/patterns.html#ieframe:ie
When run on its own the test does not time out so it looks like something is
interfering with it.
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=56204
Bug ID: 56204
Summary: Keyboard layout detection is faulty for Dvorak.
Product: Wine
Version: 8.0
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: major
Priority: P2
Component: winex11.drv
Assignee: wine-bugs(a)winehq.org
Reporter: daniel(a)gluo.nz
Distribution: ---
I have Dvorak with compose key on right-alt and a .XCompose file and IME for
Japanese via fcitx5 setup.
I see this in my console when running wine:
```
0140:trace:keyboard:X11DRV_KEYBOARD_DetectLayout Attempting to match against
"United States keyboard layout"
0140:trace:keyboard:X11DRV_KEYBOARD_DetectLayout matches=47, mismatches=5,
seq=33, score=74
0140:trace:keyboard:X11DRV_KEYBOARD_DetectLayout Attempting to match against
"United States keyboard layout (phantom key version)"
0140:trace:keyboard:X11DRV_KEYBOARD_DetectLayout matches=48, mismatches=4,
seq=34, score=80
0140:trace:keyboard:X11DRV_KEYBOARD_DetectLayout Attempting to match against
"United States keyboard layout (dvorak)"
0140:trace:keyboard:X11DRV_KEYBOARD_DetectLayout matches=47, mismatches=5,
seq=46, score=74
```
How is there *only* 5/6 miss-matches between two layouts like QWERTY and
Dvorak?
Dvorak only has 'a' and 'm' and the number row in the same place.
According to this old blog post, there might be a bug:
https://forum.winehq.org/viewtopic.php?t=32546
--
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=56203
Bug ID: 56203
Summary: Creality Slicer will not run, nor install, under
latest WINE update
Product: Wine
Version: unspecified
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: contact(a)gjim.com
Distribution: ---
My system is Linux Mint 20.3
I've been using Creality Slicer software to create .gcode files for my Ender5
Pro 3D printer.
Linux update, last night, included an update for WINE.
WINE --version shows '9.0'
Creality Slicer software had been running, very well, under previous installed
version of WINE.
Link to software:
https://www.crealitycloud.com/software-firmware/software/creality-slicer
Under current installed WINE version, installed version of Creality Slicer will
not open/run, and cannot be re-installed.
Jim
--
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=56155
Bug ID: 56155
Summary: Possible nullpointer dereference in
NtUserThunkedMenuItemInfo (Coverity)
Product: Wine
Version: 9.0-rc3
Hardware: x86-64
OS: Linux
Status: NEW
Severity: normal
Priority: P2
Component: ntdll
Assignee: wine-bugs(a)winehq.org
Reporter: dark.shadow4(a)web.de
Distribution: ---
Not exactly what Coverity reported, but NtUserCheckMenuRadioItem is missing a
nullpointer check. We have the following code:
> case NtUserCheckMenuRadioItem:
> return check_menu_radio_item( handle, pos, info->cch, info->fMask, flags );
We probably should check "info" for NULL here as well.
Coverity link:
https://scan5.scan.coverity.com/reports.htm#v60945/p10088/fileInstanceId=25…
--
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=43169
Bug ID: 43169
Summary: Anarchy Online crashes when using /petition to contact
an adviser of Rubi-Ka (Awesomium.dll)
Product: Wine
Version: 2.10
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: maiktapwagner(a)aol.com
Distribution: ---
Created attachment 58432
--> https://bugs.winehq.org/attachment.cgi?id=58432
Backtrace on wine 2.10 (non-staging)
Hello everyone,
I used to give this game Platinum ranking in the AppDB but eventually
discovered something which caused the game to crash.
I played a mission in this MMORPG and tried to contact the support team which
consists of Gamemasters which are called Advisers of Rubi-Ka. Rubi-Ka is the
planet on which the game is set.
When issuing "/petition message" through the chat window a browser is started,
the game crashes and throws a backtrace which I am attaching.
--
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=56061
Bug ID: 56061
Summary: foobar2000 installer crashes in standard mode
Product: Wine
Version: 9.0-rc2
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: paregistrase(a)yahoo.es
Distribution: ---
Created attachment 75717
--> https://bugs.winehq.org/attachment.cgi?id=75717
wine backtarce
When trying to install the last foobar2000-x64_v2.1.exe in standard mode the
installer crashes.
Attached the wine crash log and the console exit
--
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=34606
Bug #: 34606
Summary: No in-game and menu sounds in Oddworld Munch's Oddysee
CD
Product: Wine
Version: 1.7.2
Platform: x86
OS/Version: Mac OS X
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: winebugs140(a)gmail.com
Classification: Unclassified
There's no sound in the menus and in the game. The movies work fine. I created
a log as instructed here: http://wiki.winehq.org/Sound
Installing directmusic and directx9 doesn't help. No demo for this game. This
is Oddboxx CD version not Steam.
Tested with:
Windows Vista (without Wine), GeForce 9600M GS--the program works fine here
Ubuntu 13.04, GeForce 9600M GS (NVIDIA driver 313)
Mac OS X 10.7.5, ATI HD 2600 Pro, 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.
https://bugs.winehq.org/show_bug.cgi?id=54611
Bug ID: 54611
Summary: Autodesk Fusion 360 hangs during installation
Product: Wine
Version: 8.2
Hardware: x86-64
URL: https://www.autodesk.com/products/fusion-360/personal-
download
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: luca.finizio(a)protonmail.com
Distribution: Mint
Created attachment 74140
--> https://bugs.winehq.org/attachment.cgi?id=74140
Terminal output [Wine 8.2]
You can download Autodesk Fusion 360 for free (personal use version) from their
website at https://www.autodesk.com/products/fusion-360/personal-download (you
just have to register).
Clicking on the installer, an initial installation window comes up, but then it
doesn't go any further and the terminal keeps printing the same output over and
over. I attached the terminal output.
I'm using LMDE 5, Linux Kernel 5.10, Wine 8.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=30144
Bug #: 30144
Summary: Art of Murder - Hunt for the Puppeteer audio issue:
speech cut off prematurely
Product: Wine
Version: 1.3.30
Platform: x86
URL: http://www.fileplanet.com/197199/190000/fileinfo/Art-o
f-Murder:-Hunt-for-the-Puppeteer-Demo
OS/Version: Linux
Status: NEW
Keywords: download, regression
Severity: minor
Priority: P2
Component: winealsa.drv
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: gyebro69(a)gmail.com
CC: aeikum(a)codeweavers.com
Classification: Unclassified
Regression SHA1: 8258a5188cc36563809ac7495e49bc43ae4326e4
In Art of Murder 2 dialogues are corrupted: in a spoken sentence only the first
few words can be heard, the rest is skipped.
This is after
8258a5188cc36563809ac7495e49bc43ae4326e4 is the first bad commit
commit 8258a5188cc36563809ac7495e49bc43ae4326e4
Author: Andrew Eikum <aeikum(a)codeweavers.com>
Date: Fri Sep 23 15:03:51 2011 -0500
winealsa.drv: Remove wave, mixer, and dsound driver code.
:040000 040000 e34e9dab6f585755d23f4cad91d4af6dc37b786b
bf2a47c73bcdd75db339177384a4d566c4fa41e6 M dlls
Still present as of wine-1.4-78-g94953f1.
Other bugs related to this commit: bug #28856, bug #29497, bug #30143.
The linked demo version is in Polish, but speech is in English. Installation of
the demo is straightforward. In the main menu click on the topmost button to
start a new game.
While in the game, right click on any of the inventory items to hear the broken
dialogues.
The game starts with a long intro video, which is unskippable, thus the
generated debug log was 65 MB. I couldn't compress the log below 1 MB, so I
uploaded the file here:
https://docs.google.com/open?id=0B-tTbLKBl-tOVXlTTjdNMXVRd2FtbF9LRGUxc1FZUQ
Fedora 16 x86
Alsa 1.0.25
Pulseaudio is not running
Audio device: nVidia Corporation MCP61 High Definition Audio (rev a2)
--
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=56200
Bug ID: 56200
Summary: Wine (crashing) causing to open a small window then
disappear after half a second.
Product: Wine
Version: unspecified
Hardware: x86-64
OS: MacOS
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: mxrs992(a)gmail.com
When I try to open a .exe file with Wine a small window appears then half a
second later it disappears.
--
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=50265
Bug ID: 50265
Summary: Grandia2 Sound Underrun
Product: Wine
Version: 6.0-rc1
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: SolisX007(a)yahoo.com
Distribution: ---
Created attachment 68804
--> https://bugs.winehq.org/attachment.cgi?id=68804
Grandia2-Terminal.txt
Grandia2 movies sound like it's skipping on wine-6.0rc1 on a clean wine 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=48812
Bug ID: 48812
Summary: Sounds don't play in Blood 2: Choosen
Product: Wine
Version: 5.0
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: roland(a)mxchange.org
Distribution: ---
The sounds, including music don't work in Blood 2: Choosen (game id 29095) but
worked in earlier versions. If you need some debug logs, please write back.
--
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=38028
Bug ID: 38028
Summary: 163music can not glibly playback music
Product: Wine
Version: 1.7.35
Hardware: x86
URL: http://music.163.com
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: directx-dsound
Assignee: wine-bugs(a)winehq.org
Reporter: hillwoodroc(a)gmail.com
CC: fracting(a)gmail.com
Distribution: SUSE
But We can use winetricks to install directx9 to fix it.
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=56198
Bug ID: 56198
Summary: X11 driver seems to assume horizontal multi-screen
layout
Product: Wine
Version: 9.0-rc5
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: winex11.drv
Assignee: wine-bugs(a)winehq.org
Reporter: mia(a)srsfckn.biz
Distribution: ---
System info:
Distro: openSUSE Tumbleweed 20240114
WM: Sway 1.8.1
XWayland: 23.2.2 (12302002)
When running on display configurations where screens are not on a horizontal
line (e.g. stacked on top of each other), the X11 driver, at least running
under XWayland, makes it impossible to use part of the screen that a window is
on.
Examples:
[3840x2160]
[3840x2160]
In this case, only the left half of each screen is usable. The right half does
not respond to any mouse events, and programs such as winecfg will not redraw
in that region.
[2160x3840][3840x2160]
[3840x2160]
Most of each screen is usable, except for a region on the right side.
It appears that Wine divides the total width of the X11 display by the number
of screens in order to determine the active region.
I am not sure if this is an XWayland bug, but I have not observed this behavior
with other X11 applications.
(The Wayland driver unsurprisingly does not have this problem, but is also not
yet ready for general use.)
--
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=56199
Bug ID: 56199
Summary: Japanese Visual Novel "Natural Vacation" hangs on
start forever (Probably race condition)
Product: Wine
Version: 9.0-rc5
Hardware: x86-64
OS: Linux
Status: NEW
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: dark.shadow4(a)web.de
Distribution: ---
Unfortunately this is a paid game and the demo doesn't have this issue (at
least not for me).
The only thing that happens is console output
> 01b4:fixme:ntdll:EtwEventSetInformation (deadbeef, 2, 76245BE0, 43) stub
Then the program hangs forever, while maxing one CPU core.
The program is protected by Enigma (5.x) and really dislikes getting debugged.
+relay works when using RelayExclude "ntdll.*", otherways the relay breaks the
program. Although, using relay makes the issue disappear.
I figured out that "taskset 1" also makes the issue disappear.
Another way to "work around" the issue is to hack "use_futexes" to return 0.
Note: When working around the issue (either way) you sometimes get a deadlock
(loader lock?), not sure if related or not. Apart from that, it seems to work
reliably - It won't just randomly hang.
A bit more investigation reveals the following:
- It creates a file like evbdfdc.tmp in the temp directory
- It calls LoadLibraryW("plugin.dll")
- This (for some reason) loads the temporary file, which seems to have some
anti-tamper logic that is needed
- Meanwhile, the main thread spams GetModuleHandleW("plugin.dll") until it gets
something non zero.
In the error case something goes wrong and it doesn't even create the file,
while still waiting for it to be loaded. No idea what, though.
--
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=56197
Bug ID: 56197
Summary: Blur sometimes crashes:
0024:err:virtual:virtual_setup_exception stack
overflow
Product: Wine
Version: 9.0-rc3
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: cedric.dewijs(a)eclipso.eu
Distribution: ---
Created attachment 75907
--> https://bugs.winehq.org/attachment.cgi?id=75907
output from the command: journalctl MESSAGE_ID=fc2e22bc6ee647b6b90729ab34a250b1
-o verbose
Blur sometimes crashes. When it does, the following is visible in the console:
FIRST : Potentially bad data : 638 DiffPrev :2.460445 DiffNext :1.706726
FIRST : Potentially bad data : 640 DiffPrev :7.508575 DiffNext :7.046486
0130:err:virtual:allocate_virtual_memory out of memory for allocation, base
(nil) size 000b0000
0130:err:d3d:wined3d_resource_allocate_sysmem Failed to allocate system memory.
0130:err:d3d:texture_resource_sub_resource_map Failed to prepare location.
0024:err:virtual:virtual_setup_exception stack overflow 1064 bytes addr
0x5b7d4352 stack 0x2070bd8 (0x2070000-0x2071000-0x2570000)
Segmentation fault (core dumped)
To reproduce:
Download Blur from here:
https://www.myabandonware.com/download/y5l-blur
$ md5sum ~/Downloads/Blur_Win_EN_Full-Rip.zip
1828b38fbaf4f6590b0d8453a5c0c2ea
/home/cedric/Downloads/Blur_Win_EN_Full-Rip.zip
unzip the game, and run it. After a various amount of time, the game crashes.
Usually after about an hour of playing.
[cedric@cedric BLUR]$ wine Blur.exe
I've found the core file here, but it's bigger than I can attach here (424MB):
$ ls -lh /var/lib/systemd/coredump/
-rw-r-----+ 1 root root 424M Jan 16 18:14
'core.Game\x20Master.1000.449d77bb791e4c56a3cea8da590fe8d1.4692.1705425290000000.zst'
Information about the crash is recorded in the system journal, I've attached
the output of this command:
$ journalctl MESSAGE_ID=fc2e22bc6ee647b6b90729ab34a250b1 -o verbose
My system:
Arch linux, XFCE on Xorg
AMD video card, open source driver
$ wine --version
wine-9.0-rc3
$ uname -a
Linux cedric 6.6.7-arch1-1 #1 SMP PREEMPT_DYNAMIC Thu, 14 Dec 2023 03:45:42
+0000 x86_64 GNU/Linux
--
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=51955
Bug ID: 51955
Summary: Fusion 360: Certain elements from the UI remain drawn
on screen when switching to other applications
Product: Wine
Version: 6.16
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: alex.lemony(a)gmail.com
Distribution: ---
Created attachment 70935
--> https://bugs.winehq.org/attachment.cgi?id=70935
Screenshot showing bug
Fusion 360 was installed with the following installer on Manjaro KDE
Edition(x86):
https://github.com/cryinkfly/Autodesk-Fusion-360-for-Linux
Possibly of relevance is that the Bismuth tiling windows KWin script has been
in use is the current session, though the bug persists also when it is
deactivated.
Bug:
Certain elements of the UI such as the top left folder view under `BROWSER:`,
the dialogue indicating that the current file is unsaved, the heading
`COMMENTS:` in the bottom left, and the view manipulation bar at the bottom in
the center, remain drawn on screen when switching to other applications on the
same and on different virtual desktops.
This persists even when Fusion 360 is minimized. (see screenshot).
The dialogues remain interactable with buttons reacting to mouseover, though
clicking appears to have no effect.
Thanks, please email for further details if needed.
--
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=56196
Bug ID: 56196
Summary: Winelib DLLS using Wine APIs broken - constructor
issue?
Product: Wine
Version: unspecified
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: loader
Assignee: wine-bugs(a)winehq.org
Reporter: john.rogers(a)oracle.com
Distribution: ---
The .L__wine_spec_import_data_ptrs table doesn't appear to be initialized
correctly starting in Wine 6 for winelib DLLs. Simplest sample I could come up
with:
DLL source: (mydll.cpp)
#include <windows.h>
BOOL APIENTRY DllMain(HANDLE hModule, DWORD ul_reason, LPVOID lpReserved)
{
return TRUE;
}
extern "C" {
void APIENTRY dllMethod(char *str)
{
// Create msgbox
int msgbox = MessageBox(NULL, str, "The Caption", 0);
return;
}
}
SPEC file: (mydll.spec)
@ stdcall dllMethod(str)
Main EXE src: (main.c)
#include <windows.h>
extern void APIENTRY dllMethod(char *str);
// This function is the entry point for the program
int WINAPI WinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance, LPSTR
lpCmdLine, int nCmdShow)
{
// Create msgbox
int msgbox = MessageBox(NULL, "Text 1", "The Caption", 0);
dllMethod("**** Text 2 ****");
msgbox = MessageBox(NULL, "Text 3", "The Caption", 0);
return 0;
}
Compiled with following commands:
winegcc -m64 -shared -mwindows -o mydll.dll mydll.cpp mydll.spec
winegcc -m64 -mwindows main.c mydll.dll.so
If you do this with Wine 4.0.4, running "wine64 a.out.so" will step through the
3 message boxes. If you do this with Wine 6 or greater, the first message box
will be displayed, then the app will crash. The issue appears to be related to
changes made in April 2020 ("winebuild: Don't use a constructor for dll modules
either.") - the __wine_dll_register function appears to have been orphaned.
--
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=51664
Bug ID: 51664
Summary: Autodesk Fusion360: crashes when try to create
drawings
Product: Wine
Version: 6.15
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: tony762(a)gmx.com
Distribution: ---
Created attachment 70538
--> https://bugs.winehq.org/attachment.cgi?id=70538
Backtrace
Url: https://www.autodesk.cz/products/fusion-360/overview
Wine-staging 6.15
In Design when I try to create a new drawing from component, AcCoreConsole.exe
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.
https://bugs.winehq.org/show_bug.cgi?id=54661
Bug ID: 54661
Summary: winscard:winscard - The 32-bit test crashes in Wine
due to incorrect libpcsclite function signatures
Product: Wine
Version: unspecified
Hardware: x86-64
OS: Linux
Status: NEW
Severity: normal
Priority: P2
Component: winscard
Assignee: wine-bugs(a)winehq.org
Reporter: fgouget(a)codeweavers.com
Distribution: ---
winscard:winscard - The 32-bit test crashes in Wine due to incorrect
libpcsclite function signatures:
winscard.c:49: Test failed: got 80100004
winscard.c:52: Test failed: got 6
winscard.c:61: Test failed: got 6
[...]
winscard.c:120: Test failed: got deadbeef
Unhandled exception: page fault on read access to 0xdeadbeef in 32-bit code
(0x6d702b0e).
See https://test.winehq.org/data/patterns.html#winscard:winscard
Where 0x80100004 == SCARD_E_INVALID_PARAMETER
The only important failure is the first one: SCARD_E_INVALID_PARAMETER.
This happens because Wine's winscard implementation passes NULL context pointer
to the libpcsclite SCardEstablishContext() function.
And this happens because that function takes a 32-bit scope value while
unixlib.c declares that parameter are 64-bit so the remaining parameters are
all shifted.
That makes the commit below the source of the bug:
commit 8490c43f38e306fef7b5fed3ffcb256efd73af58
Author: Hans Leidekker <hans(a)codeweavers.com>
AuthorDate: Thu Feb 16 09:56:12 2023 +0100
winscard: Implement SCardEstablish/ReleaseContext() on top of libpcsclite.
--
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=56044
Bug ID: 56044
Summary: Wrong RTF text saved by application
Product: Wine
Version: 9.0-rc1
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: leyyyyy(a)gmail.com
Distribution: ---
Created attachment 75699
--> https://bugs.winehq.org/attachment.cgi?id=75699
Comparison in Meld
In windows application will update only the following lines in the file:
<a:ModificationDate>1632770938</a:ModificationDate>
A=char(1)
But Wine adds its own data which breaks original application.
You can check screenshot for details.
Error happens at least in versions 8/9 (staging is used).
--
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=56177
Bug ID: 56177
Summary: The 64-bit uxtheme:system fails on Windows 10 2004+
Product: Wine
Version: unspecified
Hardware: x86-64
OS: Windows
Status: NEW
Severity: normal
Priority: P2
Component: uxtheme
Assignee: wine-bugs(a)winehq.org
Reporter: fgouget(a)codeweavers.com
The 64-bit uxtheme:system fails on Windows 10 2004+:
system.c:2735: Test failed: Expected value 0, got -1702550272
See http://winetest.dolphin/data/patterns.html#uxtheme:system
A bisect shows that this failure started with the commit below:
commit b5f4a6a4dbb6f4d7b9f182d0d551393558458712
Author: Louis Lenders <xerox.xerox2000x(a)gmail.com>
Date: Thu Oct 19 15:15:36 2023 +0200
uxtheme: Add ShouldAppsUseDarkMode.
Wine-Bug: https://bugs.winehq.org/show_bug.cgi?id=55821
--
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=49037
Bug ID: 49037
Summary: Japanese Visual Novel "Natural Vacation" gives error
MessageBox
Product: Wine
Version: 5.7
Hardware: x86
OS: Linux
Status: NEW
Severity: trivial
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: dark.shadow4(a)web.de
Distribution: ---
Created attachment 67016
--> https://bugs.winehq.org/attachment.cgi?id=67016
Screenshot on wine
See the attached picture. You can close the messagebox again and it seems to
work just fine, but it's a bit annoying.
--
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=41739
Bug ID: 41739
Summary: Yesterday crashes at the savegame selection screen
(1st run)
Product: Wine
Version: 1.9.22
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: wine-devel(a)hurrikhan.eu
Distribution: ---
Created attachment 56179
--> https://bugs.winehq.org/attachment.cgi?id=56179
filtered logs followed by the backtrace of the error
I start the game Yesterday.exe, on steam.
The game crashes (obvious null pointer at the 16th byte of a struct) as soon as
the savegame selection is shown.
There is is a fixme reporting a call to SystemParametersInfoW that says
"unknown action 116" (documented as "get audio description")
There is also a warning on cert_verify_proc_win (reported for another game)
I've attached the logs "WARNING\|Unknown\|fixme\|crash\|Yesterday\|psengine"
--
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=56164
Bug ID: 56164
Summary: Unigine Sanctuary does not work stable with native
openal32.dll
Product: Wine
Version: 9.0-rc4
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: openal32
Assignee: wine-bugs(a)winehq.org
Reporter: kle(a)bluewin.ch
Distribution: ---
Hi all
This is my second bug report about Unigine Sanctuary. That old benchmark worked
fine (with Gallium Nine) in older Wine releases when the built-in
"openal32.dll" was present.
However, since this file was removed somewhere in Wine 8.0 this benchmark no
longer works reliable. In my case I can confirm a reproducible hard hang of the
whole Linux environment.
Until now I was not able to find a native replacement of that "openal32.dll"
library which is on par with the former built-in one.
As a conclusion I would say that in regard to the stability and compatibility
of older Windows applications it was unwise to remove the built-in
"openal32.dll". The main argument was that no Windows version contains that
file so it is also not needed in Wine.
Well, it looks that the built-in "openal32.dll" variant is simply better than
the original native releases.
There should at least exist the possibility to download the built-in
"openal32.dll" file separately. This would allow end-users to made a manual
override by setting the former built-in variant as the native one. :-)
This was tested under Kubuntu 22.04 LTS with Mesa
24.0-git2401110600.813b19-oibaf-j (git-813b193 2024-01-11 jammy-oibaf-ppa). The
system is an old iMac 12,2 containing an Radeon HD 6770M GPU which is using the
r600 Mesa driver.
The Unigine Sanctuary benchmark can be downloaded from the original website:
https://benchmark.unigine.com/sanctuary
Note, bug 56163 describes the problem of Unigine Sanctuary with the OGL/WineD3D
rendering path.
--
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=56193
Bug ID: 56193
Summary: Titanfall 2/TF2SR-Menu-Mod: midimap.dll is never
loaded
Product: Wine
Version: unspecified
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: dsound
Assignee: wine-bugs(a)winehq.org
Reporter: sentrycraft123(a)gmail.com
Distribution: ---
Created attachment 75902
--> https://bugs.winehq.org/attachment.cgi?id=75902
minimal example
[TF2SR-Menu-Mod](https://github.com/zweek/TF2SR-Menu-Mod) is as mod for
Titanfall 2 designed for speedrunners which is loaded via a midimap.dll proxy
but not so on wine.
Through some testing I found that windows loads `midimap.dll` through
`waveInMessage` in `winmm.dll` which is invoked from `DirectSoundCaptuture` in
`dsound.dll`.
Wine never interfaces with the windows multimedia api when working with
DirectSound, so it never loads `midimap.dll`
--
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=56175
Bug ID: 56175
Summary: Ntdll RtlUpcaseUnicodeChar support is too good
(supports more recent Unicode versions than Windows)
Product: Wine
Version: 9.0-rc5
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: ntdll
Assignee: wine-bugs(a)winehq.org
Reporter: pat.wine(a)tullmann.org
Distribution: ---
I am investigating a failure in a test for the Zig programming language's
support for Windows, when run under Wine. The test passes on a real Windows
installation, but fails under Wine. The test is exercising ntdll
RtlUpcaseUnicodeChar and, when run under Wine, it finds about 190 characters
that are unexpectedly upper cased.
From what I can tell, Wine uses up-to-date definitions from Unicode (via
tools/make_unicode), but Windows has not updated its Unicode tables as
recently. I have not found any documentation from Microsoft about what
specific Unicode version they support.
For a specific example, the Greek Letter Yot (U+3f3, "ϳ",
https://www.compart.com/en/unicode/U+03f3) is one that Window's
RtlUpcaseUnicodeChar will not upcase. But Wine's RtlUpcaseUnicodeChar will
upcase it to a Greek Capital Letter Yot (U+37f, "Ϳ",
https://www.compart.com/en/unicode/U+037F).
I believe this is a bug in Wine, and it should use the same upper casing rules
(and presumably a lot of other Unicode tables?) as Windows. I can provide a
Zig test case (probably not that useful!), or I can try building a C test case
if that would be helpful.
--
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=11320
Summary: AVP Gold fails to install - can't find audio track
information
Product: Wine
Version: 0.9.53.
Platform: All
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: jeffzaroyko(a)gmail.com
wine-0.9.53, Ubuntu 7.04
AVP Gold (Retail) Installer checks for a valid CD2 (audio cdrom) by attempting
to read track information using CreateFileW against where it expects .cda files
to exist
warn:file:CreateFileW Unable to create file L"d:\\track01.cda" (status
c0000034)
normally in a windows environment, the root of a cdrom drive will have an .cda
file for each track which contains data about the track
since these don't exist when running the installer in wine it fails.
someone has published some details on the file format here:
http://www.moon-soft.com/program/FORMAT/sound/cda.htm
--
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=9916
Summary: "make test" usually fails
Product: Wine
Version: 0.9.46.
Platform: Other
OS/Version: other
Status: NEW
Severity: enhancement
Priority: P2
Component: wine-misc
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: dank(a)kegel.com
"make test" should usually run well.
Right now, it usually fails badly.
Right now, on my machine, it:
put up a modal dialog once (requiring a mouse click),
hung once (requiring a 'wineserver -k'),
dropped me into the debugger once (requiring a 'wineserver -k'),
screwed up my screen resolution once,
and had 22 package failures and 169 individual test failures.
--
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=53997
Bug ID: 53997
Summary: Keyboard shortcuts issue on macOS
Product: Wine
Version: 7.21
Hardware: arm
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: kerimtalhatosun(a)gmail.com
Distribution: ---
Hello.
Many .exe applications shortcuts such as copy and paste always work with
Windows shortcuts. MacOS shortcuts like CMD+C do not work.
--
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=54762
Bug ID: 54762
Summary: Request: Add "Removable" drive mount type
Product: Wine
Version: unspecified
Hardware: arm
OS: Mac OS X
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: mountmgr.sys
Assignee: wine-bugs(a)winehq.org
Reporter: wine.bugzilla.2023(a)maildepot.net
I've come across a number of firmware updating apps for various devices which
perform pretty basic filesystem writes to the hardware when it's booted into a
special mass storage mode, but they will not work unless the drive itself is of
the "Removable" type according to this method in .NET:
https://learn.microsoft.com/en-us/dotnet/api/system.io.driveinfo.drivetype?…
Even though the virtual drive mounts and is perfectly accessible, unless THAT
method returns a 2, the app is just going to choose to ignore it and cannot be
used.
I realize that this may sound a little esoteric and that there could be a
tremendous amount of Registry complexity involved in satisfying that method,
but given that the current list of drive types we have to choose from in
winecfg is basically from 1993, it seems like a bit of an update could be a
generally good idea for the project as a whole if it is at all feasible. The
"modern" list is honestly not all that different:
https://learn.microsoft.com/en-us/dotnet/api/system.io.drivetype?view=net-8…
--
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=55664
Bug ID: 55664
Summary: NASCAR Heat 5: crashes due to possible corrupt save
Product: Wine
Version: 7.7
Hardware: arm
OS: Mac OS X
Status: UNCONFIRMED
Severity: major
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: wengland02(a)yahoo.com
Created attachment 75192
--> https://bugs.winehq.org/attachment.cgi?id=75192
Log file output from Whisky
When I run the game the first time after install, the game works fine but after
I exit the game and relaunch, the game crashes before it reaches the main menu.
I believe this a problem with the save files because after I delete them, the
game works fine. I used Whisky for this test but it also occurs in Wine
vanilla. I can not provide a download link because it is a Steam game.
--
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.