https://bugs.winehq.org/show_bug.cgi?id=49420
Bug ID: 49420
Summary: Ableton 10: file dialogs not DPI scaled
Product: Wine
Version: 5.10
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: io(a)mikelpr.com
Distribution: ---
the file open/save dialogs are not scaled when running with a different DPI,
yet the mouse input is - like if the window were actually scaled. therefore, I
can only click the top left halves (width and height) of the file dialogs
--
Do not reply 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=25961
Summary: Visual C++ 2008 runtime not marked as installed by
default
Product: Wine
Version: 1.3.12
Platform: x86
OS/Version: Linux
Status: NEW
Severity: enhancement
Priority: P2
Component: msvcrt
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: dank(a)kegel.com
The installer for the app I'm looking at now
checks for the visual c++ 2008 runtime, and runs
D:\\Redistributable\\vcredist_x86_en.exe if it wasn't found.
Now, one of these days, Wine's builtin msvcr / msvcp is going to suffice
for this and most other apps, at which point Wine might want to set
the registry to indicate that vcrun2008 is already installed.
This might be in the distant future, depending on how many apps need
the other things that come with the runtime package, like mfc and a full
msvcp, that wine does not yet provide. So this bug will likely remain
open for a long time (if it's not closed for being too far ahead of its time).
For the record, this seems to be how the app is checking whether vcrun2008
is installed:
0024:Call msi.MsiQueryProductStateW(0033e2de
L"{9A25302D-30C0-39D9-BD6F-21E6EC160475}") ret=0040b9ad
0024:Call advapi32.RegOpenKeyW(80000002,0033d6c2
L"Software\\Microsoft\\Windows\\CurrentVersion\\Installer\\Managed\\S-1-5-4\\Installer\\Products\\D20352A90C039D93DBF6126ECE614057",0033d968)
ret=7ef2cd5c
0024:Ret advapi32.RegOpenKeyW() retval=00000002 ret=7ef2cd5c
0024:Call advapi32.RegOpenKeyW(80000001,0033d6c2
L"Software\\Microsoft\\Installer\\Products\\D20352A90C039D93DBF6126ECE614057",0033d968)
ret=7ef2cd5c
0024:Ret advapi32.RegOpenKeyW() retval=00000002 ret=7ef2cd5c
0024:Call advapi32.RegOpenKeyW(80000002,0033d6c2
L"Software\\Classes\\Installer\\Products\\D20352A90C039D93DBF6126ECE614057",0033d968)
ret=7ef2cd5c
0024:Ret advapi32.RegOpenKeyW() retval=00000002 ret=7ef2cd5c
0024:Call advapi32.RegOpenKeyW(80000002,0033d4ca
L"Software\\Microsoft\\Windows\\CurrentVersion\\Installer\\UserData\\S-1-5-4\\Products\\D20352A90C039D93DBF6126ECE614057\\InstallProperties",0033d964)
ret=7ef2b600
0024:Ret advapi32.RegOpenKeyW() retval=00000002 ret=7ef2b600
0024:Ret msi.MsiQueryProductStateW() retval=ffffffff ret=0040b9ad
--
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=31990
Bug #: 31990
Summary: Add ability to upload extra files along with test ext
Product: Wine-Testbot
Version: unspecified
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: enhancement
Priority: P2
Component: unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: titan.costa(a)gmail.com
Classification: Unclassified
That would be good to have the ability to upload extra files (avi files, dlls,
.drv, ...) to perform individual test (not part of the test suite).
Otherwise it requires to embed the file or use a self extracting exe which are
not very convenient.
--
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=33126
Bug #: 33126
Summary: divided SysEx and coalesced midiOutLongMsg
Product: Wine
Version: 1.5.25
Platform: x86
OS/Version: Linux
Status: NEW
Severity: normal
Priority: P2
Component: winealsa.drv
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: hoehle(a)users.sourceforge.net
Classification: Unclassified
Johannes Kroll reported in wine-patches that the KORG Kontrol Editor software
hung after sending an ill-formed SysEx via winealsa's midiOutLongMsg.
http://www.winehq.org/pipermail/wine-patches/2013-January/121335.html
The MIDIHDR data is F0 ... F7 00 00 00 (125 bytes).
http://www.winehq.org/pipermail/wine-devel/2013-February/098852.html
He observed that no hang occurs when skipping the trailing 3 zero bytes. F7 is
the "End Of SysEx" (EOX) marker.
It is still unclear what happens. MIDI HW is expected to skip over bogus
bytes, thus the zero bytes should cause no harm. OTOH, ALSA might be getting
into trouble processing ill-formed messages, and we don't know if or how many
bytes ALSA actually sent out through the serial port.
In any case, midiOutLongMsg handling in Wine needs fixes.
- winealsa should extract the F0...F7 part and send that as a SysEx.
- More generally, midiOutLong is known to accept not only SysEx packets, but
also coalesced status messages. Some MIDI authors prefer to send e.g. chords
via one LongMsg rather than successive calls to midiOutShortMsg, arguing that
it's faster. Hence all Wine MIDI drivers need to decompose midiOutLongMsg into
packets consisting of status message, regular SysEx ... and possibly junk.
- All APIs (MS, ALSA, OSS, CA) acknowledge the existence of divided SysEx. As
a result, framing SysEx with F0 ... F7 is entirely under application control.
The current winealsa framing code is simply wrong.
- winecoreaudio always declared 3 bytes for short messages, even program
change.
I have written a sequence of patches to fix all of this. The only thing that
is unclear is how to encapsulate garbage data like the above 3 zero bytes or
real time messages with ALSA. What ALSA API function and what ALSA message
type to use? Heck, I'm not even sure winealsa.drv/midi.c:modData is ok to send
a 2-byte MTC quarter frame via snd_seq_ev_set_sysex instead of using a
primitive that sets the type SND_SEQ_EVENT_CLOCK/TICK.
--
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=46392
Bug ID: 46392
Summary: Commandos: Behind Enemy Walls is freezing while using
native quartz.dll
Product: Wine
Version: 4.0-rc4
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: winegstreamer
Assignee: wine-bugs(a)winehq.org
Reporter: gang65(a)poczta.onet.pl
Distribution: ---
Created attachment 63153
--> https://bugs.winehq.org/attachment.cgi?id=63153
Terminal logs with WINEDEBUG=+quartz+gstreamer+amstream
Commandos: Behind Enemy Walls is freezing while using native quartz.dll.
This is caused lack of support for 8 bit colour mode (it is using in Cinepak
codec):
https://multimedia.cx/mirror/cinepak.txt
It is also visible in the logs with fixme warning:
003c:trace:gstreamer:accept_caps_sink 0x7add5558 0x7be6aac8
003c:fixme:gstreamer:amt_from_gst_caps_video Unknown bpp 8
The cinepak gstreamer codec is already installed with command (Ubuntu 18.04):
sudo apt install gstreamer1.0-libav:i386
--
Do not reply 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=50278
Bug ID: 50278
Summary: Diggles: The Myth of Fenris (GOG version) crashes on
launch
Product: Wine-staging
Version: 5.22
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: lcaffe(a)inbox.lv
CC: leslie_alistair(a)hotmail.com, z.figura12(a)gmail.com
Distribution: ---
Created attachment 68826
--> https://bugs.winehq.org/attachment.cgi?id=68826
When runnning main executable 'Diggles.exe'
Game Diggles: The Myth of Fenris
https://www.gog.com/game/diggles_the_myth_of_fenris
Crashes on startup (log attached), the screen becomes black for a second or
two.
--
Do not reply 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=51317
Bug ID: 51317
Summary: multiple applications fail with
NLogConfigurationException in Wine-Mono
(PlagiarismDetector, WinAuth, Panzer Paladin)
Product: Wine
Version: 6.11
Hardware: x86-64
OS: Linux
Status: NEW
Severity: normal
Priority: P2
Component: mscoree
Assignee: wine-bugs(a)winehq.org
Reporter: madewokherd(a)gmail.com
Distribution: ---
This is essentially the following NLog bug:
https://github.com/NLog/NLog/issues/2598
NLog is getting tripped up by the op_Implicit method on System.String which
doesn't exist on .NET Framework, and which it can't call with reflection.
This causes PlagiarismDetector to fail to load with:
[ERROR] FATAL UNHANDLED EXCEPTION: System.Windows.Markup.XamlParseException:
The invocation of the constructor on type 'PlagiarismDetector.MainWindow' that
matches the specified binding constraints threw an exception. --->
System.TypeInitializationException: The type initializer for
'PlagiarismDetector.MainWindow' threw an exception. --->
NLog.NLogConfigurationException: Error when setting property 'Name' on Console
Target[(unnamed)] ---> System.NotSupportedException: Cannot invoke method with
stack pointers via reflection
It also affects WinAuth
(https://web.archive.org/web/20210310120512/https://github.com/winauth/winau…)
once bug 25167 is fixed, and Panzer Paladin in Proton
(https://github.com/ValveSoftware/Proton/issues/4225).
We can't just remove or make non-public String.op_Implicit because libraries
other than mscorlib use 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=43542
Bug ID: 43542
Summary: MikuMikuMoving errors when loading audio file
Product: Wine
Version: 2.14
Hardware: x86
URL: https://sites.google.com/site/mikumikumoving/MikuMikuM
oving_v1275.zip
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: dark.shadow4(a)web.de
Distribution: ---
Created attachment 58940
--> https://bugs.winehq.org/attachment.cgi?id=58940
Log of the crash
Using native dotnet40 and d3dx9.
When loading an audio file (.wav), the program crashes.
After installing natuve devenum and quartz it errors with
> Retrieving the COM class factory for component with CLSID {C1F400A4-3F08-11D3-9F0B-006008039E37} failed fue to the following error: 80040154 Exception from HRESULT 0x80040154 (REGDB_E_CLASSNOTREG).
but doesn't crash.
Possibly related to https://bugs.winehq.org/show_bug.cgi?id=43541
--
Do not reply 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=39206
Bug ID: 39206
Summary: Lylian demo hangs after intro video
Product: Wine
Version: 1.7.50
Hardware: x86-64
URL: http://www.fileplanet.com/217922/210000/fileinfo/Lylia
n-Demo
OS: Linux
Status: NEW
Keywords: download
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: 00cpxxx(a)gmail.com
Distribution: ---
Currently wine plays the introduction video but after that it hangs and only
resumes when a few keystrokes and/or mouse clicks are performed.
The problem seems related to quartz but since I'm not sure the component is not
set yet. The video playback ends but it looks like quartz does not recognize
that and keeps waiting for things to happen.
Last lines from the quartz log:
0032:trace:quartz:StdMediaSample2_Release (0x1bb4c0)->(): new ref = 0
0032:trace:quartz:BaseMemAllocator_ReleaseBuffer (0x1baea0)->(0x1bb4c0)
0032:trace:quartz:StdMediaSample2_Release (0x1b92a8)->(): new ref = 0
0032:trace:quartz:BaseMemAllocator_ReleaseBuffer (0x1b8298)->(0x1b92a8)
0032:trace:quartz:AVISplitter_SendEndOfFile End of file reached
0032:fixme:qedit:SampleGrabber_IPin_EndOfStream : stub
0032:trace:quartz:AVISplitter_SendEndOfFile --> 0
0032:trace:quartz:AVISplitter_thread_reader Thread 0 terminated properly
002e:fixme:quartz:FileAsyncReader_WaitForNext Returned: 258 (00000578)
002e:trace:quartz:FileAsyncReader_WaitForNext -- 8004022e
002e:trace:quartz:PullPin_Thread_Process Process sample
002e:trace:quartz:FileAsyncReader_WaitForNext (10000, 0x139e924, 0x139e910)
002e:warn:quartz:FileAsyncReader_WaitForNext Called without samples in queue
and not flushing!!
002e:fixme:quartz:FileAsyncReader_WaitForNext Returned: 258 (00000578)
002e:trace:quartz:FileAsyncReader_WaitForNext -- 8004022e
002e:trace:quartz:PullPin_Thread_Process Process sample
002e:trace:quartz:FileAsyncReader_WaitForNext (10000, 0x139e924, 0x139e910)
002e:warn:quartz:FileAsyncReader_WaitForNext Called without samples in queue
and not flushing!!
002e:fixme:quartz:FileAsyncReader_WaitForNext Returned: 258 (00000578)
002e:trace:quartz:FileAsyncReader_WaitForNext -- 8004022e
The last 4 lines repeat forever.
If I change the game AVI file to any other AVI it plays fine and ends fine.
--
Do not reply 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=55130
Bug ID: 55130
Summary: IF EXIST fails when its argument ends on a slash
Product: Wine
Version: 8.6
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: cmd
Assignee: wine-bugs(a)winehq.org
Reporter: madebr(a)gmail.com
Distribution: ---
When a folder argument of IF EXIST ends on a slash, it will report the argument
as not existing, even though it is.
```
rd /s /q folder
mkdir folder
if exist folder echo "Folder exists"
if not exist folder/ echo "BAD! FOLDER DOES EXIST ACTUALLY"
```
This prints the message "BAD! FOLDER DOES EXIST ACTUALLY", where it shouldn't.
--
Do not reply 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=54575
Bug ID: 54575
Summary: False positive detection of mmc reader as hard drive
since kernel 6.1
Product: Wine
Version: 8.2
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: major
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: busko.lukasz(a)pm.me
Distribution: ---
Since kernel 6.1 wine interprets mmc reader as valid /dev/sda device.
Problem is that kernel instead of /dev/mmc created /dev/sda... However its easy
to fix in wine. Please just detect device class type and problem never appear
again.
Reproduction steps install fusion360
https://github.com/str0g/Autodesk-Fusion360-Linux
or
https://github.com/cryinkfly/Autodesk-Fusion-360-for-Linux
1.Open project
2.Modify something
3.leave it for 30minuts (don't know if screen saver is important or not)
4.add additional modification
5.try to save.
Expected outcome
Error:
D:\Stage\workspace\protein\release\2021.10.R2023\protein\src\libs\protein4\archiveadaptor.cpp(210)stream
can not open!!
Additional information:
winprefixes/
d:: -> /dev/sda
Actual mmc device...
❯ dmesg |grep sda
[ 3.455870] sd 0:0:0:0: [sda] Media removed, stopped polling
[ 3.456045] sd 0:0:0:0: [sda] Attached SCSI removable disk
[99954.410598] sd 0:0:0:0: [sda] 250085376 512-byte logical blocks: (128 GB/119
GiB)
[99954.411058] sda: detected capacity change from 0 to 250085376
[99954.411675] sda: sda1
when sd card is in slot
winprefixes/
d:: -> /dev/sda1
e:: -> /dev/sda
--
Do not reply 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=54499
Bug ID: 54499
Summary: Native ODBC drivers should be able be used.
Product: Wine
Version: 8.1
Hardware: x86-64
OS: Linux
Status: NEW
Severity: normal
Priority: P2
Component: odbc
Assignee: wine-bugs(a)winehq.org
Reporter: leslie_alistair(a)hotmail.com
Distribution: ---
Wine is unable to user native ODBC drivers which have been installed.
PostgreSQL and MySQL are two of the comment ones.
Currently the only way is to install the unixODBC driver, you require which
isn't always free.
--
Do not reply 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=35163
Bug ID: 35163
Summary: Victoria 2 crashes on start with built-in quartz
Product: Wine
Version: 1.7.8
Hardware: x86
URL: http://www.gamershell.com/download_85888.shtml
OS: Linux
Status: NEW
Keywords: download
Severity: minor
Priority: P2
Component: quartz
Assignee: wine-bugs(a)winehq.org
Reporter: gyebro69(a)gmail.com
Classification: Unclassified
Created attachment 46906
--> http://bugs.winehq.org/attachment.cgi?id=46906
terminal output
The game crashes shortly after starting with Wine's built-in quartz.dll.
'winetricks quartz' is a workaround.
Lots of
>fixme:quartz:parse_header Not a valid header: ff:ff:ff:ff
are preceding the crash. They're probably the game music files (mp3 format)
that causing the problem.
Fedora 19
wine-1.7.8-114-g1928d61 (compiled from source without gstreamer support)
Alsa 1.0.27 (Pulseaudio is not running)
--
Do not reply 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=55401
Bug ID: 55401
Summary: CMD 'for loop' params are not recognized
Product: Wine
Version: 8.0.2
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: cmd
Assignee: wine-bugs(a)winehq.org
Reporter: mr.dmitry.sokolov(a)gmail.com
Distribution: ---
The command not working
for %%1 in (..)
ACTUAL
Cmd script (attached) produces no output.
EXPECTED
See attached .exp 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=52346
Bug ID: 52346
Summary: Filename completion is not supported in cmd
Product: Wine
Version: 6.0.2
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: EmilySeville7cf(a)gmail.com
Distribution: ---
"/f:on" doesn't work as expected. Instead of filenames completed when I press
"Tab" I get "^I".
--
Do not reply 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=45810
Bug ID: 45810
Summary: WINEPATH maximums
Product: Wine
Version: 3.0.2
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: paleozogt(a)gmail.com
Distribution: ---
Created attachment 62272
--> https://bugs.winehq.org/attachment.cgi?id=62272
winepath-test.sh
WINEPATH seems to have some undocumented limits, which cause the in-windows
PATH to be corrupted.
One limit, around 969 characters, causes the PATH to drop the suffix that's
usually appended (C:\windows\system32;C:\windows;C:\windows\system32\wbem).
Another limit, around 1025 characters, causes the PATH to entirely ignore
what's in WINEPATH.
I'm not sure why these limits exist-- can't Windows support arbitrarily long
PATHs? (I've routinely seen huge PATHs on Win7/Win10.)
The attached winepath-test.sh makes a WINEPATH of various sizes and then echos
the size and the %PATH% in the cmd shell.
The output looks like:
> $ ./winepath-test.sh
>
> 968
> C:\aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa;C:\windows\system32;C:\windows;C:\windows\system32\wb
>
> 969
> C:\aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
>
> 1024
> C:\aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
>
> 1025
> C:\windows\system32;C:\windows;C:\windows\system32\wbem
--
Do not reply 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=44888
Bug ID: 44888
Summary: Wrong texture in Assassin's Creed : Revelations
Product: Wine
Version: 3.5
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: directx-d3d
Assignee: wine-bugs(a)winehq.org
Reporter: berillions(a)gmail.com
CC: matteo.mystral(a)gmail.com
Distribution: ---
Created attachment 60959
--> https://bugs.winehq.org/attachment.cgi?id=60959
Good Texture before to use Eagle Vision
Hi,
In game, when you use the "Eagle Vision", there are graphical glitches each
time you disable it to return to the "Normal Vision". I took 2 screenshots
because it's better than words.
I tried everything, set d3dx9_* to native, enable/disable cmst. I have this
issue with Mesa-Git and Mesa 17.3.7.
SYSTEM :
- Gentoo amd64
- AMD Rx 560 - 4Go
- Mesa git / Mesa 17.3.7 + LLVM 5.0.1
- Wine-Staging 3.5 -> Need it, because Uplay doesn't work without it.
I have a lot of these warning/error when i launch the game :
[...]
00e7:fixme:d3d:surface_convert_format Cannot find a conversion function from
format WINED3DFMT_B8G8R8X8_UNORM to WINED3DFMT_L8_UNORM.
00e7:fixme:d3d:surface_cpu_blt Cannot convert WINED3DFMT_B8G8R8X8_UNORM to
WINED3DFMT_L8_UNORM.
00e7:err:d3d:cpu_blitter_blit Failed to blit.
[...]
--
Do not reply 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=54246
Bug ID: 54246
Summary: Full Metal Daemon Muramasa stuck at black screen at
boot
Product: Wine
Version: 8.0-rc2
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: thieujank(a)gmail.com
Distribution: ---
Created attachment 73799
--> https://bugs.winehq.org/attachment.cgi?id=73799
black screen
https://www.gog.com/game/full_metal_daemon_muramasa
The game stuck at black screen after launch
--
Do not reply 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=21344
Summary: Buffer overflow in WCMD_run_program
Product: Wine
Version: 1.1.36
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: cmd
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: dima(a)gmail.com
The WCMD_run_program function in wcmdmain.c copies pathposn into thisDir
without checking the size:
/* Work on the first directory on the search path */
pos = strchrW(pathposn, ';');
if (pos) {
memcpy(thisDir, pathposn, (pos-pathposn) * sizeof(WCHAR));
thisDir[(pos-pathposn)] = 0x00;
pathposn = pos+1;
} else {
strcpyW(thisDir, pathposn);
pathposn = NULL;
}
The size of pathposn can be up to MAXSTRING, while thisDir has size MAX_PATH.
To reproduce:
$ wine cmd /c
'Z:\xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\foo'
err:seh:setup_exception_record stack overflow 2144 bytes in thread 0019 eip
7bc3ea3e esp 00230ad0 stack 0x230000-0x231000-0x330000
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=41197
Bug ID: 41197
Summary: Wine support for _NET_WM_PING
Product: Wine
Version: 1.9.17
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: fzatlouk(a)redhat.com
Distribution: ---
Created attachment 55435
--> https://bugs.winehq.org/attachment.cgi?id=55435
Screenshot of Battlefield 2 after game just finished loading (and it's not
stuck)
I am not sure if wine supports _NET_WM_PING [0]. However, if it does, it should
be able to emulate _NET_WM_PING pong for some time if application running under
Wine is not responding.
Otherwise, most VM (mutter from GNOME Shell for example) gonna show up window
about not responding application (even if application is loading or just
finished loading) which could destabilize application itself (especially when
in full screen).
Could be seen in: Battlefield 2, World of Warcraft and probably plenty of other
games.
[0]
https://specifications.freedesktop.org/wm-spec/wm-spec-latest.html#idm14020…
--
Do not reply 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=49696
Bug ID: 49696
Summary: Bully: Scholarship Edition has broken sound
Product: Wine
Version: 5.14
Hardware: x86-64
OS: Linux
Status: NEW
Severity: normal
Priority: P2
Component: xactengine
Assignee: wine-bugs(a)winehq.org
Reporter: andrey.goosev(a)gmail.com
Distribution: ---
Created attachment 67938
--> https://bugs.winehq.org/attachment.cgi?id=67938
xact3
quartz is disabled due to the same error message as bug 31476
Then just mix of scratching sounds in main menu.
wine-5.14-161-g94b5ccef81
--
Do not reply 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=50823
Bug ID: 50823
Summary: Sniper: Ghost Warrior 2 has rendering glitch in DX11
mode with OpenGL renderer
Product: Wine
Version: 6.4
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 69641
--> https://bugs.winehq.org/attachment.cgi?id=69641
example
With 'Object Detail' set to Medium or higher.
wine-6.4-118-g2828d0820a1
--
Do not reply 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=52013
Bug ID: 52013
Summary: Multiple games crash on launch (Nail'd demo, Sniper:
Ghost Warrior)
Product: Wine
Version: 6.21
Hardware: x86-64
URL: https://www.moddb.com/games/naild/downloads/nail-d-dem
o
OS: Linux
Status: NEW
Keywords: download
Severity: minor
Priority: P2
Component: wmp&wmvcore
Assignee: wine-bugs(a)winehq.org
Reporter: andrey.goosev(a)gmail.com
Distribution: ---
069c:fixme:wmvcore:header_info_GetAttributeByName Unknown attribute
L"WM/VideoWidth".
069c:fixme:wmvcore:header_info_GetAttributeByName Unknown attribute
L"WM/VideoHeight".
069c:fixme:wmvcore:header_info_GetAttributeByName Unknown attribute
L"WM/VideoFrameRate".
069c:fixme:wmvcore:header_info_GetAttributeByName Unknown attribute
L"NumberOfFrames".
069c:fixme:wmvcore:WMReaderAdvanced_SetAllocateForOutput (01BD1D60)->(0 1)
069c:fixme:wmvcore:WMReaderAdvanced_GetMaxOutputSampleSize (01BD1D60)->(0
0032ED98)
069c:fixme:wmvcore:WMReaderAdvanced_SetAllocateForOutput (01BD1D60)->(1 1)
069c:fixme:wmvcore:WMReaderAdvanced_GetMaxOutputSampleSize (01BD1D60)->(1
0032ED98)
winegstreamer warning: videoconvert1: not negotiated
winegstreamer warning: videoconvert1:
../libs/gst/base/gstbasetransform.c(1431):
gst_base_transform_reconfigure_unlocked ():
/GstBin:bin0/GstVideoConvert:videoconvert1:
not negotiated
wine-6.21-116-g6a072b98c10
--
Do not reply 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=42366
Bug ID: 42366
Summary: Unable to bing Common Language Runtime
Product: Wine
Version: 2.0-rc6
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: blocker
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: sjayejohnston(a)gmail.com
Distribution: ---
I'm trying to run a program,Brain Vision Analyzer through wine
I get a dialogue box saying "Unable to bin Common Language Runtime
(0x80131700)" and in the terminal wine is reporting (fixme:mscoree:get_runtime
Unrecognized version L"v4.0.20926"
Happy to provide more info.
Best
S
--
Do not reply 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=49715
Bug ID: 49715
Summary: [Quantum Break]Crashes when live-action video begins
Product: Wine
Version: 5.15
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: berillions(a)gmail.com
Distribution: ---
Created attachment 67970
--> https://bugs.winehq.org/attachment.cgi?id=67970
Crash when the stream loads
Hello,
Between each act, there is live-action video like this :
https://youtu.be/wHeKQGUzZgc?t=20
The problem is that these videos are not in the game but online. The game uses
a streaming system to load/read the video in game.
I add a screenshot which capture the moment where the game crashes.
You can see that "Buffering content, wait" (in French : Mise en mémoire tampon
du contenu, patientez).
This issue is not blocking, relaunch the game and you can continu the next act.
Install mf dll from mf-install (https://github.com/z0z0z/mf-install) does not
fix the issue.
This crashes appears with Wine-5.15 / Wine-Staging-5.15 / Proton 5.0-9
--
Do not reply 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=49308
Bug ID: 49308
Summary: [Meta] Support HDR metadata/ HDR in applications
Product: Wine
Version: unspecified
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: romulasry(a)protonmail.com
Distribution: ---
Here is a list on where to start:
https://en.opensuse.org/openSUSE:Roadmap#Upcoming_openSUSE_Leap_Release
This would be nice to have as in the future with newer monitors.
--
Do not reply 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=48512
Bug ID: 48512
Summary: alt-tab difference between windows and wine
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: beauxq(a)yahoo.com
Distribution: ---
There are many bug reports about alt-tab, but they are all referencing a
specific application.
I'm reporting this as a general issue with all applications, it will probably
fix many of the other problems from other bug reports.
In Windows, when you alt-tab away from an application, it immediately sends the
event for the alt key being lifted up to the application that is losing focus.
So the application does not think that the alt key is being held down.
In Wine, when you alt-tab away from an application, the application still
thinks that the alt key is being held down.
These are just a few of the many reports that I suspect might be solved by
fixing this:
https://bugs.winehq.org/show_bug.cgi?id=47536https://bugs.winehq.org/show_bug.cgi?id=30814
My observation is with both Final Fantasy XI and World of Warcraft, but there
are many, many other reports of similar problems with alt-tab in other games.
--
Do not reply 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=51024
Bug ID: 51024
Summary: Silverlight 5.1 configuration tab "Webcam / Mic"
webcam preview is black
Product: Wine
Version: 6.6
Hardware: x86-64
URL: https://web.archive.org/web/20140529102802/http://silverlight.dlservice.microsoft.com/download/B/A/9/BA94BEC
9-5DBC-4B50-BC2B-046A42399067/30214.00/Silverlight.exe
OS: Linux
Status: NEW
Keywords: download
Severity: normal
Priority: P2
Component: quartz
Assignee: wine-bugs(a)winehq.org
Reporter: gijsvrm(a)gmail.com
Distribution: ArchLinux
Created attachment 69874
--> https://bugs.winehq.org/attachment.cgi?id=69874
+qcap
On windows, the output of the webcam is shown instead of a black screen.
I've attached a +qcap log.
The configuration tool is located at C:\Program Files (x86)\Microsoft
Silverlight\5.1.30214.0\Silverlight.Configuration.exe after installation.
$ sha1sum Silverlight.exe
417d876a2f6be969ddf931b122bbaf3bc10ba8d7 Silverlight.exe
$ du -sh Silverlight.exe
6.7M Silverlight.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.
http://bugs.winehq.org/show_bug.cgi?id=30976
Bug #: 30976
Summary: Navyfield crashes after splash screen
Product: Wine
Version: 1.5.6
Platform: x86
URL: http://www.navyfield.com/Download/Game/Main.aspx
OS/Version: Linux
Status: NEW
Keywords: download, regression
Severity: minor
Priority: P2
Component: winegstreamer
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: austinenglish(a)gmail.com
CC: paulthetall(a)gmail.com
Depends on: 27109, 30733, 30975
Classification: Unclassified
Install the demo from http://www.navyfield.com/Download/Game/Main.aspx
austin@aw25 ~ $ sha1sum NF1343.exe
1c7b6bd0903e3876d31556b13f199b771117d9c2 NF1343.exe
austin@aw25 ~ $ du -h NF1343.exe
623M NF1343.exe
run `winetricks vcrun6` (bug 27109). Install as normal, all defaults. Run the
game, and ignore the messed up launcher graphics (bug 30975). Click the bottom
right gray button to get in game. A splash screen will show, and shortly after,
crash.
With native quartz, it gets slightly further (potentially bug 16733, but it's
hard to tell). If you add in native devenum, then you can get to the point
where it wants to download a patch.
So, winegstreamer is lacking here. I'll attach its output.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=54682
Bug ID: 54682
Summary: Nioh: Complete Edition movies fail to play
Product: Wine
Version: 8.3
Hardware: x86-64
OS: Linux
Status: NEW
Severity: normal
Priority: P2
Component: quartz
Assignee: wine-bugs(a)winehq.org
Reporter: andrey.goosev(a)gmail.com
Distribution: ---
Created attachment 74196
--> https://bugs.winehq.org/attachment.cgi?id=74196
+quartz
029c:fixme:quartz:amt_to_wg_format_video_wmv Unknown format type
{00000000-0000-0000-0000-000000000000}.
029c:fixme:quartz:MediaSeeking_SetTimeFormat Unhandled time format
{7b785571-8c82-11cf-bc0c-00aa00ac74f6}
8.3-192-g67c67703311
--
Do not reply 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=49863
Bug ID: 49863
Summary: Tony hawk pro skater 1 + 2 crash at startup
Product: Wine
Version: 5.17
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: jesper(a)slashwin.dk
Distribution: ---
Created attachment 68206
--> https://bugs.winehq.org/attachment.cgi?id=68206
Tar containing the 'info proc', 'RelayExclude', and log
Tony hawk pro skater 1 + 2 (the new 2020 remake) crashes on startup when
started from the Epic Games Launcher. In regular wine it just crashes, while in
wine staging it gets a window, and then crashes.
Without extra debug options there's no output indicating the source of the
error, and since the game has to be started through the launcher isolating the
debug output is not easy. The best way I've found is to just dump relay with
+pid for the launcher, and then dumping the 'info proc' to filter the log.
Unfortunately relay causes some timings to get messed up which seems to cause
an infinite loop during early startup. I've created a RelayExclude that
excludes enough to get the game to crash with +relay (it's the quiet_hand.reg).
It's possible that some of the entries aren't required.
I've also attached the log output that I've been able to collect so far. I've
stripped out all the log output that doesn't relate to the inner
'THPS2.exe(0400)' process, and limited it to the last 1M lines, since the
archive got too big (there's close to 9M lines in the full output).
The log output ends in an exception, but I have no idea how to debug that.
--
Do not reply 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=41297
Bug ID: 41297
Summary: Fable Lost Chapters Crash at begins
Product: Wine
Version: 1.9.18
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: mrdeathjr28(a)yahoo.es
Distribution: ---
Created attachment 55623
--> https://bugs.winehq.org/attachment.cgi?id=55623
backtrace-fable-lost-chapters
Game begins normally with cinematics until game shows press left mouse button
for entry and if pressed game crash
However you can push right mouse button (game dont entry) and push esc key or
enter for select and game dont crash but dont entry
--
Do not reply 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=9261
Summary: Final Fantasy 8 with hardware acceleration shows wrong
colors
Product: Wine
Version: 0.9.42.
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-directx-d3d
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: alessandro.guido(a)gmail.com
Created an attachment (id=7514)
--> (http://bugs.winehq.org/attachment.cgi?id=7514)
Snapshots that shows how the game looks
Like the attached image shows, wrong colors are shown when usign Final Fantasy
8 with hardware acceleration enabled.
There are plenty of messages like:
fixme:d3d7:IDirect3DTextureImpl_PaletteChanged
(0x2eb3148)->(00000000,00000100): stub!
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=13829
Summary: Wine does not have Japanese fonts
Product: Wine
Version: 1.0-rc4
Platform: Other
OS/Version: other
Status: UNCONFIRMED
Severity: enhancement
Priority: P2
Component: fonts
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: hramrach(a)centrum.cz
These are needed to support Japanese applications.
On Windows there is MS Gothic which is duplicated as MS PGothic and MS UI
Gothic. The later have the Latin range proportional, the first one has the
Latin range fixed width but I suspect these are really the same font with
different spacing.
There is also MS Mincho (and MS PMincho with proportional Latin). This differs
form Gothic in the style of the Japanese glyphs.
--
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=53960
Bug ID: 53960
Summary: ucrt has different struct layout than msvcrt
Product: Wine
Version: unspecified
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: msvcrt
Assignee: wine-bugs(a)winehq.org
Reporter: euloanty(a)live.com
Distribution: ---
https://bugs.winehq.org/show_bug.cgi?id=51698
I found that bug before it was actually because UCRT definition of struct
_iobuf in wine is just wrong.
This is a serious abi issue that has to be fixed and that is also probably why
UCRT programs do not work very well on wine.
/*
referenced from win10sdk ucrt
C:\Program Files (x86)\Windows Kits\10\Source\10.0.19041.0\ucrt
//-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
//
// Internal Stream Types (__crt_stdio_stream and friends)
//
//-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
// Ensure that __crt_stdio_stream_data* and FILE* pointers are freely
convertible:
struct ucrt_stdio_stream_data
{
union
{
FILE public_file;
char* ptr;
};
char* base;
int cnt;
long flags;
long file;
int charbuf;
int bufsiz;
char* tmpfname;
};
The definition of UCRT is
struct
#if __has_cpp_attribute(__gnu__::__may_alias__)
[[__gnu__::__may_alias__]]
#endif
ucrt_iobuf
{
char* _ptr;
char* _base;
int _cnt;
long _flag;
long _file;
int _charbuf;
int _bufsiz;
char* _tmpfname;
};
while msvcrt is
struct
#if __has_cpp_attribute(__gnu__::__may_alias__)
[[__gnu__::__may_alias__]]
#endif
ucrt_iobuf
{
char* _ptr;
int _cnt;
char* _base;
int _flag;
int _file;
int _charbuf;
int _bufsiz;
char* _tmpfname;
};
The location of _base and _cnt swaps.
--
Do not reply 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=49953
Bug ID: 49953
Summary: LOOT (Load Order Optimization Tool) crashes at launch
Product: Wine
Version: 5.18
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: rtentser(a)yandex.ru
Distribution: ---
Created attachment 68343
--> https://bugs.winehq.org/attachment.cgi?id=68343
Backtrace
https://www.nexusmods.com/skyrimspecialedition/mods/1918
After a crash there is just black window without an interface. It can be closed
with Alt+F4.
I'm using current master (c29f9e6ee7656aa028bb1630284e7d4873bd5b0f) but can
reproduce the problem with 5.0.2 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=48056
Bug ID: 48056
Summary: Patch : "winex11: Match keyboard in Unicode" cause
invalid input key
Product: Wine-staging
Version: 4.19
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: charles.gorand.dev(a)gmail.com
CC: leslie_alistair(a)hotmail.com, z.figura12(a)gmail.com
Distribution: ---
Using wine-4.19 + wine-staging 4.19 built from scratch.
Issue :
When hit 'i' key on French keyboard another character ('è' or 'é') is displayed
which is not expected.
Application tested : Starcraft II, Battle.net.
Reverting patch c6521c978cb60a1e7fdc70f794008a7dd0f37903 solve the issue.
I'll try to investigate and provide a patch if I found a solution.
--
Do not reply 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=50070
Bug ID: 50070
Summary: Adobe Creative Cloud authentication fails due to
missing CAPTCHA
Product: Wine-gecko
Version: unspecified
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-gecko-unknown
Assignee: jacek(a)codeweavers.com
Reporter: msdobrescu(a)gmail.com
Distribution: ---
When try to install or run Adobe Creative Cloud, after launch, a login is
required in the Adobe Creative Cloud window. After the credentials are entered,
for an Adobe account and a subscription, a message is displayed:
"You need to install the latest updates to Windows and/or your Adobe apps.
Learn more
Captcha validation has failed"
There is no visible CAPTCHA anywhere in the logon window. As effect, the
authentication fails and there is no possibility to continue.
Internet Explorer can't be installed either, so the process is stuck here.
Operating System: Gentoo Linux
KDE Plasma Version: 5.19.5
KDE Frameworks Version: 5.74.0
Qt Version: 5.15.0
Kernel Version: 5.7.0-sabayon
OS Type: 64-bit
Processors: 8 × Intel® Core™ i7 CPU 920 @ 2.67GHz
Memory: 23,5 GiB of RAM
Graphics Processor: GeForce GTX 1060 6GB/PCIe/SSE2
wine-5.17 (Staging)
--
Do not reply 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=54544
Bug ID: 54544
Summary: Men of War: Assault Squad shows a white screen
Product: vkd3d
Version: 1.6
Hardware: x86-64
OS: Linux
Status: NEW
Severity: minor
Priority: P2
Component: hlsl
Assignee: wine-bugs(a)winehq.org
Reporter: andrey.goosev(a)gmail.com
Distribution: ---
0800:err:d3dcompiler:D3DCompile2 Failed to compile shader, vkd3d result -4.
0800:err:d3dcompiler:D3DCompile2 Shader log:
0800:err:d3dcompiler:D3DCompile2 <anonymous>: W4300: Redefinition of .
0800:err:d3dcompiler:D3DCompile2 <anonymous>: W4300: Redefinition of .
0800:err:d3dcompiler:D3DCompile2 <anonymous>: W4300: Redefinition of .
0800:err:d3dcompiler:D3DCompile2 <anonymous>: W4300: Redefinition of .
0800:err:d3dcompiler:D3DCompile2 <anonymous>:337:24: W5300: Implicit
truncation of vector type.
0800:err:d3dcompiler:D3DCompile2 <anonymous>:338:24: W5300: Implicit
truncation of vector type.
0800:err:d3dcompiler:D3DCompile2 <anonymous>:358:1: E5000: syntax error,
unexpected KW_VERTEXSHADER
0800:err:d3dcompiler:D3DCompile2
0800:err:d3dcompiler:D3DCompile2 Failed to compile shader, vkd3d result -4.
0800:err:d3dcompiler:D3DCompile2 Shader log:
0800:err:d3dcompiler:D3DCompile2 <anonymous>: W4300: Redefinition of .
0800:err:d3dcompiler:D3DCompile2 <anonymous>: W4300: Redefinition of .
0800:err:d3dcompiler:D3DCompile2 const.inc:3:1: W4300: Redefinition of
TEXTURTILING.
0800:err:d3dcompiler:D3DCompile2 const.inc:5:1: W4300: Redefinition of
SHININESS.
0800:err:d3dcompiler:D3DCompile2 const.inc:7:1: W4300: Redefinition of
CONTRAST.
0800:err:d3dcompiler:D3DCompile2 <anonymous>:264:15: E5005: Function
"tex2D" is not defined.
0800:err:d3dcompiler:D3DCompile2
1.6-125-g7c3dadce
--
Do not reply 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=43652
Bug ID: 43652
Summary: Engine Prime: no playback of tracks
Product: Wine
Version: 2.15
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: smidge(a)xsco.net
Distribution: ---
Created attachment 59079
--> https://bugs.winehq.org/attachment.cgi?id=59079
Log file demonstrating no playback and no audio devices
Engine Prime is a music preparation application targeted at DJs who use Denon's
latest hardware. It can be downloaded at http://www.denondj.com/engineprime
Engine Prime 1.0.0 starts up successfully if d3dcompiler_46.dll and
d3dcompiler_47.dll are disabled. If a track is added to the collection, and
then played, there is no playback. No errors are recorded.
Steps to reproduce:
* Clean wine prefix.
* Install Engine Prime 1.0.0 (link above)
* Copy an MP3 file of your choice to somewhere under drive_c.
* Copy another MP3 file of your choice to somewhere else on your filesystem
accessible via a drive mapped in Wine, e.g. the Z: drive
* Start Engine Prime as follows:
env WINEDLLOVERRIDES="d3dcompiler_46.dll=d;d3dcompiler_47.dll=d" wine
~/.wine/drive_c/Program\ Files\ \(x86\)/Engine\ Prime/EnginePrime.exe
* Navigate to the filesystem browser
* Choose an example track (at the time of writing, the file must be under C:
drive - see bug #43651)
* Right-click, choose Add To Collection
* Double-click the file to load it into the deck
* Allow track analysis to complete if it is still going
* Press play
Expected outcome: the track plays
Actual outcome: the application does not play the track, nor give any
indication that it is playing or trying to play the track
Additional observations:
* Navigate to the Preferences screen (the cog icon in the top right)
* Observe that the "Default Device" for audio output is selected, but no info
about bit depth or sample rate are shown.
* Testing sound through winecfg demonstrates that sound does work in other wine
applications
A terminal log capture is attached. The only line which suggests anything
suspicious is the following, which is printed 20 times in a row when the
application first starts up:
fixme:mmdevapi:MMDevice_Activate IID_IDeviceTopology unsupported
mmdevapi is one of the DLLs for the Core Audio API:
https://msdn.microsoft.com/en-us/library/windows/desktop/dd316602(v=vs.85).…
--
Do not reply 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=43651
Bug ID: 43651
Summary: Engine Prime: can only add tracks if under C: drive
Product: Wine
Version: 2.15
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: smidge(a)xsco.net
Distribution: ---
Created attachment 59077
--> https://bugs.winehq.org/attachment.cgi?id=59077
Log file adding a track via Z: drive (faulty)
Engine Prime is a music preparation application targeted at DJs who use Denon's
latest hardware. It can be downloaded at http://www.denondj.com/engineprime
Engine Prime 1.0.0 starts up successfully if d3dcompiler_46.dll and
d3dcompiler_47.dll are disabled. But a track can only be added to the
collection via the Filesystem Browser if it is accessed via the C: drive.
Trying to add a track via the Z: drive (mapped to root) silently fails to add
the track to the collection.
Steps to reproduce:
* Clean wine prefix.
* Install Engine Prime 1.0.0 (link above)
* Copy an MP3 file of your choice to somewhere under drive_c.
* Copy another MP3 file of your choice to somewhere else on your filesystem
accessible via a drive mapped in Wine, e.g. the Z: drive
* Start Engine Prime as follows:
env WINEDLLOVERRIDES="d3dcompiler_46.dll=d;d3dcompiler_47.dll=d" wine
~/.wine/drive_c/Program\ Files\ \(x86\)/Engine\ Prime/EnginePrime.exe
* Observe empty music collection (try clicking on "Collection")
"Good" route:
* Select the Filesystem Browser
* Navigate to the folder containing the 1st MP3 file from earlier (under C:
drive)
* Click the folder to show the file in the main pane to the right
* Right-click the track, choose Add to Collection
* Click on Crates, then click on Collection
* Observe that the MP3 file has been added to the collection successfully
"Bad" route:
* Select the Filesystem Browser
* Navigate to the folder containing the 2nd MP3 file from earlier (under Z:
drive)
* Click the folder to show the file in the main pane to the right
* Right-click the track, choose Add to Collection
* Click on Crates, then click on Collection
* Observe that the MP3 file has *NOT* been added to the collection successfully
Logs for the good and bad route 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=39406
Bug ID: 39406
Summary: LabVIEW 2014: Errors during installation block the
process (continue to accept them)
Product: Wine
Version: 1.7.52
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: zat_xorg(a)hotmail.com
Distribution: ---
Created attachment 52522
--> https://bugs.winehq.org/attachment.cgi?id=52522
Backtrace file of error during installation
LabVIEW 2014: Installer finishes, but with error popups during the process (you
have to accept in order to complete the installation)
http://www.ni.com/download/labview-development-system-2014/4735/en/
--
Do not reply 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=40898
Bug ID: 40898
Summary: Mass Effect (Steam) has no sounds with native OpenAL
(except for cutscenes)
Product: Wine
Version: 1.9.13
Hardware: x86
URL: http://store.steampowered.com/app/17460/
OS: Linux
Status: NEW
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: gyebro69(a)gmail.com
CC: aeikum(a)codeweavers.com
Distribution: ---
Created attachment 54990
--> https://bugs.winehq.org/attachment.cgi?id=54990
audio debug log
(+tid,+seh,+mmdevapi,+winmm,+driver,+msacm,+midi,+dsound,+dsound3d,+xaudio2,+xapofx,+dmusic,+mci,+pulse,+alsa,+timestamp)
The problem sounds similar to bug #40833: audio works in the cutscenes, intro
videos, but not in the menus and in the main game.
The differences are:
- Mass Effect doesn't make use of Xaudio/Xaudio2 but Openal (the game comes
bundled with native openal32.dll and wrap_oal.dll)
- the proposed patch from bug #40833 doesn't fix the problem.
I reproduced the problem with ALSA and Pulseaudio as well.
Possible workarounds:
- force Wine to use the built-in openal32. Audio works with that (the game
recognizes the audio device as 'Generic Software').
- when using the native openal32, edit BIOEngine.ini and change the line in
section [ISACTAudio.ISACT.AudioDevice]
DeviceName = Generic Software
For some reason, the game always tries to use 'Hardware acceleration' for sound
when using native openal32.dll that comes with the game.
FWIW, audio used to work in the game before
commit 7d6c6025923c039ac6a2458ca466290621238c36
Author: Andrew Eikum <aeikum(a)codeweavers.com>
Date: Fri Oct 2 09:02:56 2015 -0500
openal32: Prefer native version.
Because openal contexts are global per-process, applications that use
openal will conflict with Wine DLLs that use openal like xaudio2_7 now
does. Windows does not ship an openal32, so all applications that use
openal will ship their own copy of it. According to Chris Robinson,
Windows native openal32 works fine in Wine, so we should just use that
to avoid the problem.
Fedora 24 x86_64
Audio device: NVIDIA Corporation MCP61 High Definition Audio (rev a2)
Pulseaudio 8.0 / Alsa 1.1.1
openal-soft-1.17.2
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=44328
Bug ID: 44328
Summary: Game Memory's Dogma CODE:01 crashes at specific point
Product: Wine
Version: 3.0-rc4
Hardware: x86-64
OS: FreeBSD
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: quartz
Assignee: wine-bugs(a)winehq.org
Reporter: emilia(a)disroot.org
Created attachment 60192
--> https://bugs.winehq.org/attachment.cgi?id=60192
log output of wine game.exe
The game seems to try to start a video next, the screen fades to black and it
crashes with a page fault error.
I suspect that the issue is in quartz since a stub warning occurs just before
the game crashes.
The log file was created by launching the game loading a save file right before
the transition and clicking to advance to next screen.
--
Do not reply 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=44375
Bug ID: 44375
Summary: High Virtual Memory crashing many 32bit games.
Product: Wine
Version: unspecified
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: major
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: jonfarr87(a)gmail.com
Distribution: ---
I've been noticing this in many games although could never confirm where the
issue was coming from, many games would just crash after a period of time.
Recently been investigating this issue and it seems to affect a lot of titles.
The games in question would work perfectly until at some point they will just
crash with an error.
The worst ones so far are - Legend of Grimrock 2 and Race Driver: GRID
Meanwhile there are the ones which will work fine (sometimes even a couple of
hours), then crash when they reach 4GB Virtual Memory used, examples are:
Path of Exile
Dragon Age: Origins
NecroVisioN
It is worth noting that reducing the graphics details also reduces the amount
of virtual memory used and prolongs the crash.
I noticed another old bug report such as this:
https://bugs.winehq.org/show_bug.cgi?id=10778 maybe it's somewhat 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=48504
Bug ID: 48504
Summary: Error when running the exe file
Product: Wine
Version: unspecified
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: genka79(a)mail.ru
Distribution: ---
Created attachment 66301
--> https://bugs.winehq.org/attachment.cgi?id=66301
log file
When you start the game, an error appears: in the file ...if a serious error is
detected the application will be closed
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.