https://bugs.winehq.org/show_bug.cgi?id=50237
Bug ID: 50237
Summary: The Sims 3 - cannot interact with objects and floor.
Product: Wine
Version: 5.22
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: germanapps(a)gmail.com
Distribution: ---
Created attachment 68743
--> https://bugs.winehq.org/attachment.cgi?id=68743
Wine logs
After upgrading from Wine Staging 5.21 to Staging 5.22 a serious bug appeared:
When you interact with floor or an object in "Life" mode, action menu is broken
and moved to the far right side of the screen and game cursor is moved to the
far left side.
Video footage of the bug here:
http://www.mediafire.com/file/v7wmvjcghtl28pz/sims3-wine5.22-mousebug.mp4/f…
I have done some tests beginning from 5.9 (which was the last reported version
and doesn't even allow to initialize a new prefix and throws errors instead) to
5.22 and only 5.22 has this bug. It is consistent, so there should be no
problem for others to reproduce it.
Tested on Debian 10.6 Stable with KDE, Linux Mint 19.3 Xfce and Linux Mint 20
Xfce.
--
Do not reply 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=50395
Bug ID: 50395
Summary: Star Wars: Galactic Battlegrounds needs
dpmodemx.dll.SPInit
Product: Wine-staging
Version: 6.0-rc3
Hardware: x86-64
URL: https://www.fileplanet.com/archive/p-2037/Star-Wars-Ga
lactic-Battlegrounds-Demo
OS: Linux
Status: NEW
Keywords: download
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: gyebro69(a)gmail.com
CC: leslie_alistair(a)hotmail.com, z.figura12(a)gmail.com
Distribution: ---
Created attachment 69013
--> https://bugs.winehq.org/attachment.cgi?id=69013
terminal output
After the dxdiag-new-dlls patchset has been added to Staging, such games as Age
of Empires 2, Star Wars: Galactic Battlegrounds crash immediately after
starting.
--
Do not reply 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=50162
Bug ID: 50162
Summary: msvcrt-Math_Precision patchset breaks audio in Diablo
III
Product: Wine-staging
Version: 5.22
Hardware: x86-64
URL: https://www.blizzard.com/download/confirmation?platfor
m=windows&product=d3
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: maciej.stanczew+b(a)gmail.com
CC: leslie_alistair(a)hotmail.com, z.figura12(a)gmail.com
Regression SHA1: 7734f7a8087291ec15c4d1adfe1a6db055972266
Distribution: ArchLinux
Created attachment 68678
--> https://bugs.winehq.org/attachment.cgi?id=68678
Use precise_cosh in unix_cosh instead of unix_cos
Steps to reproduce:
1. Lower your audio volume to not break ears;
2. Launch Diablo III ("wine Diablo\ III64.exe -launch").
Expected result:
Menu music starts playing, UI sounds work.
Actual result:
There is about 2 seconds of loud, garbled audio, then silence.
I've bisected this to msvcrt-Math_Precision patchset and its latest rebase.
Wine 2fb08bed46f + Staging 0192a7b3 don't have the issue.
Wine c72e1b096d1 + Staging 7734f7a8 is where the problem is introduced.
Building Staging 5.22 with "-W msvcrt-Math_Precision" also produces a working
version.
Looking at the patchset's rebase (7734f7a8), we see that precise_cosh was used
in unix_cos instead of unix_cosh. Reverting unix_cos to use cos, and using
precise_cosh instead in unix_cosh, solves the issue for me. I've attached a
patch with these changes.
--
Do not reply 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=49374
Bug ID: 49374
Summary: skyrim is unable to run under staging 5.10
Product: Wine-staging
Version: unspecified
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: l12436(a)yahoo.com.tw
CC: leslie_alistair(a)hotmail.com, z.figura12(a)gmail.com
Distribution: ---
Created attachment 67434
--> https://bugs.winehq.org/attachment.cgi?id=67434
last log with error
skyrim is unable to run in recently wine.
error is in the attachment.
This is happened for a period of time.
I have tested on vanilla wine, it is able to run without any 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=50255
Bug ID: 50255
Summary: server/fd.c:1986:18: error: 'O_SYMLINK' undeclared
Product: Wine-staging
Version: 6.0-rc1
Hardware: x86-64
OS: FreeBSD
Status: NEW
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: gerald(a)pfeifer.com
CC: leslie_alistair(a)hotmail.com, marcus(a)jet.franken.de,
z.figura12(a)gmail.com
Created attachment 68780
--> https://bugs.winehq.org/attachment.cgi?id=68780
Proposed patch to unbreak the build
6.0-rc1 features a new build failure versus 5.22:
server/fd.c: In function 'open_fd':
server/fd.c:1986:18: error: 'O_SYMLINK' undeclared (first use in this
function)
1986 | flags |= O_SYMLINK;
| ^~~~~~~~~
Indeed O_SYMLINK appears nowhere under /usr/include on FreeBSD 11.x
nor on my openSUSE system with glibc 2.32.
The latter does have O_PATH, so the following snippet from server/fd.c
comes to the rescue:
#if !defined(O_SYMLINK) && defined(O_PATH)
# define O_SYMLINK (O_NOFOLLOW | O_PATH)
#endif
The attached patch fixes (or works around) this issue. Successfully
tested on FreeBSD 11/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=44207
Bug ID: 44207
Summary: Wine fails to run Unigine Heaven 4.0
Product: Wine-staging
Version: 2.21
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: b1779506(a)trbvn.com
CC: erich.e.hoover(a)wine-staging.com, michael(a)fds-team.de,
sebastian(a)fds-team.de
Distribution: ---
Created attachment 59977
--> https://bugs.winehq.org/attachment.cgi?id=59977
Crash log
Download URL: https://benchmark.unigine.com/heaven
Download link: http://assets.unigine.com/d/Unigine_Heaven-4.0.exe
File: Unigine_Heaven-4.0.exe
See log.
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=51062
Bug ID: 51062
Summary: Warframe through Lutris no longer has dx12 option in
Launcher with wine staging 6.7
Product: Wine-staging
Version: 6.7
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: jhu543369(a)gmail.com
CC: leslie_alistair(a)hotmail.com, z.figura12(a)gmail.com
Distribution: ---
Running Warframe through Lutris with a custom runner pointing to
wine-6.6-staging/bin/wine64 and in the launcher options, dx12 experimental is
available. Switch runner to wine-6.7-staging/bin/wine64 and the launcher no
longer has a dx12 experimental option, just dx11. World of Warcraft through
Lutris with the 6.7 runner works fine with dx12.
--
Do not reply 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=51069
Bug ID: 51069
Summary: 5 builds of winehq-staging are broken in Debian
Stretch
Product: Wine-staging
Version: 5.17
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: blocker
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: lucmove(a)gmail.com
CC: leslie_alistair(a)hotmail.com, z.figura12(a)gmail.com
Distribution: ---
Created attachment 69930
--> https://bugs.winehq.org/attachment.cgi?id=69930
Output of first attempt to run right after the upgrade or downgrade
As of today, April 26 2021, all the 5 latest builds of winehq-staging are
broken on Debian Stretch.
5.12 is the newest build I can use. Versions 5.13, 5.14, 5.15, 5.16 and 5.17.2
all refuse to run on Debian Stretch.
There aren't any newer versions than 5.17.2 in the repository.
I have this line in my apt/sources.list file so I guess I'm downloading all
these broken versions from you:
deb https://dl.winehq.org/wine-builds/debian/ stretch main
The output says, among other things, "run_wineboot failed to start wineboot
c00000e5"
Although I've found reports with that line on Google, I've been unablle to find
a solution and I'm not sure the developers know that so many of the latest
versions are broken. I assume not, based on the number of latest versions that
are broken.
--
Do not reply 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=51026
Bug ID: 51026
Summary: Winbox don't start
Product: Wine-staging
Version: 6.6
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: letarch(a)gmail.com
CC: leslie_alistair(a)hotmail.com, z.figura12(a)gmail.com
Distribution: ---
Winbox don't start. Tracelog say what not have required libs.
But version wine 6.5 works normal.
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=51003
Bug ID: 51003
Summary: Regression: Multiple games have broken input in
wine-staging 6.6
Product: Wine-staging
Version: 6.6
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: linards.liepins(a)gmail.com
CC: leslie_alistair(a)hotmail.com, z.figura12(a)gmail.com
Distribution: ---
See bugreports in RHBZ for detailed explanation:
https://bodhi.fedoraproject.org/updates/FEDORA-2021-9ab0461da6
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.