http://bugs.winehq.org/show_bug.cgi?id=24505
Summary: Plants vs Zombies: Low FPS on seeds menu
Product: Wine
Version: 1.3.3
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: adys.wh(a)gmail.com
The seeds menu (presented at the start of each game) in Plants vs Zombies GOTY
edition (Steam) makes the game lag noticeably.
nvidia 9800gtx+ / 260.xx drivers (official binaries) / xorg 1.9
Happens both on fullscreen and windowed, only tested in virtual desktop. No
relevant console output.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=25426
Summary: King's Quest Collection Series (1997): KQ7, MGDX, and
King's Questions crash winevdm.exe
Product: Wine
Version: 1.3.8
Platform: x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: tristan_schmelcher(a)alumni.uwaterloo.ca
Created an attachment (id=32360)
--> (http://bugs.winehq.org/attachment.cgi?id=32360)
Backtrace of the King's Quest 7 crash
After installing the game King's Quest Collection Series (the 1997 edition),
attempting to start the games King's Quest 7 or Mixed-Up Mother Goose Deluxe or
the bonus app King's Questions results in a winevdm.exe crash. The backtrace
for all three games is very similar so I'm filing a single bug for the crashes.
Note that you need a WINE version from commit
8fb6b02d946d751a9c26c20d94c71a83e1088349 or later in order for installation to
succeed.
--
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=44272
Bug ID: 44272
Summary: PlayVig: can't watch video (not playing)
Product: Wine
Version: 2.21
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: critical
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: kakadu.hafanana(a)gmail.com
Distribution: ---
Created attachment 60085
--> https://bugs.winehq.org/attachment.cgi?id=60085
Full log with WINEDEBUG=warn+all
After starting a video I see in the log messages like this, they look
suspicious (Yes, the file exists).
warn:ntdll:FILE_CreateFile L"\\??\\C:\\PlayVig\\VRBridge.dll.config" not found
c0000034)
warn:file:CreateFileW Unable to create file L"C:\\PlayVig\\VRBridge.dll.config"
(status c0000034)
The full log is in an attachment.
P.S. The application changes advertisement videos into in-game good, so it is
critical.
The application uses .NET and issue might be related to 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=46878
Bug ID: 46878
Summary: Everquest has huge lag issue. Makes game unplayable.
Using wine 4.0 on Solus bungie.
Product: Wine
Version: 4.0
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: birdseth(a)gmail.com
Distribution: ---
I am on Solus Bungie trying to play EverQuest 1 through lutris. I can log in
and it takes forever to load. Once loaded to character page. It starts lagging.
When you enter the world. It lags so bad that the game is unplayable.
My system is ryzen5 2600, 16gb ram, gtx 1080ti
my connection speed is 50 mbps.
Any help would be awesome.
--
Do not reply 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=40560
Bug ID: 40560
Summary: Its take a long time to exit game while using some
addons
Product: Wine
Version: 1.9.6
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: ntdll
Assignee: wine-bugs(a)winehq.org
Reporter: mad_sam(a)bk.ru
Distribution: ---
Created attachment 54400
--> https://bugs.winehq.org/attachment.cgi?id=54400
Console output after exiting game
Its take a long time to exit game while using addons that are saving
information.
For example: GearScore, Getherer, Recount.
It was tested on two computers.
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=43585
Bug ID: 43585
Summary: Calling PageSetupDlgA with invalid default printer
leads to an unhandled exception
Product: Wine
Version: 2.15
Hardware: x86
OS: Windows
Status: UNCONFIRMED
Severity: minor
Priority: P2
Component: comdlg32
Assignee: wine-bugs(a)winehq.org
Reporter: kamil.hornicek(a)reactos.org
Created attachment 58997
--> https://bugs.winehq.org/attachment.cgi?id=58997
possible solution
This was tested in Windows XP with Wine's comdlg32.dll.
Steps to reproduce:
1. set Software\Microsoft\Windows NT\CurrentVersion\Windows\Device to a
non-existent printer
2. run comdlg32 printdlg test
Expected result:
PageSetupDlgA should fail with PDERR_NODEFAULTPRN
Acutal result:
test_PageSetupDlgA crashes after null pointer dereference in
GdiConvertToDevmodeW
Remarks:
If the value of the system default printer stored in Software\Microsoft\Windows
NT\CurrentVersion\Windows\Device gets corrupted or is not properly set upon
printer
removal, PageSetupDlgA called with the PSD_RETURNDEFAULT flag will cause an
unhandled exception in gdi32:GdiConvertToDevmodeW after calling it with a null
devmode.
At comdlg32:pagesetup_common@3862 get_default_printer will succeed but the
returned printer will be bogus. Then pagesetup_change_printer will fail trying
to get the default driver. When pagesetup_update_papersize is called few lines
below the devmode stored in the pagesetup_data struct passed to it will be
null, which will lead to the crash.
Solution:
Function comdlg32:pagesetup_common needs to check the return value of
comdlg32:pagesetup_change_printer and return if it fails. Attached is a
possible solution to this bug.
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=45397
Bug ID: 45397
Summary: WSAStringToAddressA recognizes "255.255.255" as a
valid IP
Product: Wine
Version: 3.10
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: winsock
Assignee: wine-bugs(a)winehq.org
Reporter: ansasaki(a)redhat.com
Distribution: ---
Created attachment 61709
--> https://bugs.winehq.org/attachment.cgi?id=61709
Reproducer
When WSAStringToAddressA is called passing "255.255.255" as the input string to
be converted, it is successful and returns zero.
Running on Windows instead of wine, it returns an error code, as expected.
This was tested using version wine-3.10 (Staging), packaged on Fedora.
Follows attached a reproducer.
--
Do not reply 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=41654
Bug ID: 41654
Summary: Pokerstars crashes "pokerstarsbr.exe"
Product: Wine
Version: 1.9.22
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: bkfh6rztwq(a)upfid.anonbox.net
Distribution: ---
Created attachment 56041
--> https://bugs.winehq.org/attachment.cgi?id=56041
pokerstarsbr.exe
Linux Mint 18 Cinnamon
Lenovo T61 (Grafik: Nvidia Quadro NVS 140M), usin recommended proprietary
driver 340.98
All up to date incl. Kernel
Hello,
pokerstars shows "pokerstarsbr.exe doesnt work and has to be ended" at start of
pokerstars or when i want to pay in instead of payment-window. I cant pay in or
play. Look at attachment pls.
When i type winecfg it shows 3 times
"err:winediag:xrandr12_init_modes Broken NVIDIA RandR detected, falling back to
RandR 1.0. Please consider using the Nouveau driver instead"
before winecfg starts.
Install winetricks and run winetricks orm=backbuffer glsl=disable doesnt work
for me.
How can i fix this? Thx for your 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=44865
Bug ID: 44865
Summary: Software wich used "Direct Manipulation" causes a
crash
Product: Wine
Version: 3.4
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: major
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: gillg02(a)hotmail.com
Distribution: ---
Usage of "Direct Manipulation" introduced in Windows 8
(https://msdn.microsoft.com/en-us/library/windows/desktop/hh446969(v=vs.85).…),
in a software, trigger an unexpected exception and cause a crash.
Some GUID libs are not registered :
https://msdn.microsoft.com/en-us/library/windows/desktop/dn466705(v=vs.85).…
Sample error :
0035:fixme:wtsapi:WTSRegisterSessionNotification Stub 0x100ec 0x00000000
0035:err:ole:CoGetClassObject class {54e211b6-3650-4f75-8334-fa359598e1c5} not
registered
0035:err:ole:CoGetClassObject no class object
{54e211b6-3650-4f75-8334-fa359598e1c5} could be created for context 0x1
wine: Unhandled exception 0x80000003 in thread 35 at address 0x2ed8609 (thread
0035), starting debugger...
--
Do not reply 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=43034
Bug ID: 43034
Summary: Starcraft 2 Legacy of the Void crash
Product: Wine
Version: unspecified
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: gabrielexy01(a)gmail.com
Distribution: ---
Created attachment 58187
--> https://bugs.winehq.org/attachment.cgi?id=58187
A window which says that cannot run Battlenet.exe (which is to start starcraft
2)
Starcraft 2 Legacy of the Void (the videogame) crashes even before it starts
(look at attachments, but they are in italian).
Some people on a website about Ubuntu told me that I need Windows 7 at least to
run Starcraft 2, but maybe you have a better solution, you, who know about the
program wine.
Ps: I've always played Starcraft 2 but on Wings of liberty and heart of the
swarm even if it sometimes crashed, but now I can't even run the Battlenet
program (which needs to run Starcraft 2).
And I can't even search for the error because when I press "mostra i dettagli"
(show details), it doesn't "upload" 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.