https://bugs.winehq.org/show_bug.cgi?id=57064
Bug ID: 57064
Summary: Bloodrayne 2 (legacy and Terminal Cut): graphical
issue (foggy screen)
Product: Wine
Version: 9.5
Hardware: x86-64
URL: https://archive.org/download/BloodRayne2Demo/BloodRayn
e2Demo.rar
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: awesie(a)gmail.com, z.figura12(a)gmail.com
Regression SHA1: f6a1844dbed91b441ad69e7b15b5be242d063e87
Distribution: ArchLinux
Created attachment 76927
--> https://bugs.winehq.org/attachment.cgi?id=76927
terminal output
This bug affects both the legacy version of Bloodrayne 2 (2005) and the
Terminal Cut version (2020).
I made only a cursory test with the game, but the issue is immediately obvious:
The screen looks as if it was covered with haze.
If I turn off these graphics options in the game launcher, the problem still
occurs: bump mapping, dynamic shadows, reflections.
The result of the regression test:
commit f6a1844dbed91b441ad69e7b15b5be242d063e87
wined3d: Use bindless textures for GLSL shaders if possible.
Can be reproduced with Bloodrayne 2 demo version.
BloodRayne2Demo.rar (477M)
md5: 226a09d5f5ce2c4e0b7319627c75e69d
Still present in Wine-9.15.
Tested with NVIDIA 550.40.67.
--
Do not reply 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=46803
Bug ID: 46803
Summary: Diablo 1 GOG.com crash
Product: Wine
Version: 4.3
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: major
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: xzgamertag(a)mail.com
Distribution: ---
Created attachment 63823
--> https://bugs.winehq.org/attachment.cgi?id=63823
Log
Diablo crashes immidiately after skipping intro, while using hi-res, latest
version. When I try to run Diablo (Classic) version, it requires original CD to
proceed.
--
Do not reply 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=57286
Bug ID: 57286
Summary: Dark Age of Camelot - camelot.exe required
igd10um32.dll but the .dll file is not found.
Product: Wine
Version: 9.19
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: tmwine(a)pertho.net
Distribution: ---
Created attachment 77228
--> https://bugs.winehq.org/attachment.cgi?id=77228
Output of WINEDEBUG=warn+all
Hi,
When running the Dark Age of Camelot's patcher/downloader (camelot.exe) after
installing on WINE 9.19 (bug happened on 9.17 and 9.18 too), and I go to run
camelot.exe to have it download its files it crashes with:
libc++abi: terminating due to uncaught exception of type std::bad_alloc:
std::bad_alloc
Running it with warn+all in WINEDEBUG I see information pointing to the app
needing some .dll file that it can't find called igd10umd32.dll. (See attached
camelot.log file)
Someone on the #winehq channel on Freenode said that .dll isn't used and WINE
pretends to do its function (something to do with Intel graphics), and
recommended to copy dcomp.dll to igd10um32.dll. So I copied
/usr/lib/wine/x86_64-windows/dcomp.dll from the WINE package to the program's
folder as 'igd10umd32.dll' and then it worked. Is there something that can be
put into WINE to emulate this .dll without having to resort to copying a
physical file and renaming it that?
Thanks,
Tom
--
Do not reply 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=49780
Bug ID: 49780
Summary: wineconsole reports VT sequence support when it does
not
Product: Wine
Version: 5.16
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: cmd
Assignee: wine-bugs(a)winehq.org
Reporter: magiblot(a)hotmail.com
Distribution: ---
Created attachment 68092
--> https://bugs.winehq.org/attachment.cgi?id=68092
Demo application to reproduce the issue
Wineconsole does not support applications writing Virtual Terminal sequences
through the Console API. That's fine. However, when enabling the console
ENABLE_VIRTUAL_TERMINAL_PROCESSING mode on stdout with SetConsoleMode, no error
is returned, so the application has no way to detect whether VT sequences are
supported or not. This is documented in
https://docs.microsoft.com/en-us/windows/console/setconsolemode.
The port of Turbo Vision at https://github.com/magiblot/tvision is affected by
this. When using the Console API, Turbo Vision prefers VT sequences over
SetConsoleCursorPosition/SetConsoleTextAttribute for code reusability and
performance. Nevertheless, it can fall back to the latter method when
SetConsoleMode fails to enable either ENABLE_VIRTUAL_TERMINAL_PROCESSING or
DISABLE_NEWLINE_AUTO_RETURN. Since SetConsoleMode does not return error on
wineconsole, garbage is shown instead of a colorful interface.
STEPS TO REPRODUCE
To reproduce the issue on Turbo Vision:
(A) - Using the attached 'tvdemo.exe'
1. Run the application on wineconsole. You should see a black-and-white
background and escape sequences drawn on the console.
2. Press Alt+F, then D. You should see the command prompt, and the message "VT
enabled" at the top, which demonstrates the issue in SetConsoleMode.
(B) - Compiling from source code (requires up-to-date CMake and MSVC).
1. Insert the following code after line 63 in source/linux/win32con.cpp
(https://github.com/magiblot/tvision/blob/dd4e410e60a34e08053399e346d4ed4e63…):
```
if (supportsVT)
cerr << "VT enabled" << endl;
else
cerr << "VT not enabled: " << GetLastError() << endl;
```
2. Follow the build instructions at
https://github.com/magiblot/tvision/blob/dd4e410e60a34e08053399e346d4ed4e63…
3. Follow the steps in (A).
EXPECTED BEHAVIOUR
On Windows, support for VT sequences can be disabled by turning on the "Legacy
Console" mode. If tvdemo.exe is ran in these conditions, the interface is
displayed properly. If entering the command prompt by pressing Alt+F, then D,
the message "VT not enabled: 87" is displayed (error 87 stands for
ERROR_INVALID_PARAMETER), which is what should be shown on wineconsole as well,
since it clearly does not support VT sequences.
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=56539
Bug ID: 56539
Summary: Ableton Live 12 Suite Crashes Whenever Max Instruments
Startup
Product: Wine
Version: 9.4
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: numono(a)yahoo.com
Distribution: Other
Created attachment 76295
--> https://bugs.winehq.org/attachment.cgi?id=76295
Ableton 12 Wine Command Line Output
Live 12 crashes Whenever Max For Live Instruments Startup.
Here's the Free Download - https://www.ableton.com/en/download/archive/
--
Do not reply 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=56709
Bug ID: 56709
Summary: PackTouchHitTestingProximityEvaluation not located in
USER32.dll when attempting to run Clip Studio Paint
3.0
Product: Wine
Version: 9.8
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: major
Priority: P2
Component: user32
Assignee: wine-bugs(a)winehq.org
Reporter: animaloser(a)gmail.com
Distribution: ---
Clip Studio Paint 3.0 fails to open, with a pop-up message that reads "The
procedure point PackTouchHitTestingProximityEvaluation could not be located in
the dynamic link library USER32.dll"
The launcher does run however, even if it's all white, it's been documented in
the appdb entry for the program. The main software, CLIPStudioPaint.exe, does
not.
--
Do not reply 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=57361
Bug ID: 57361
Summary: need support for WD Unlock.exe to unlock Western
Digital hard drive
Product: Wine
Version: unspecified
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: parkerjbarker(a)yahoo.com
Distribution: ---
After looking through the bug list, I see this bug:
https://forum.winehq.org/viewtopic.php?t=12694
and the workaround suggested was to run WD Unlock using a Windows system in
virtualbox.
What I'm asking for is support for WD Unlock.exe. I'm not sure if it's a
16-bit program or what. I get an error code when I try to run the program in
Wine, which error code I can provide later - I don't remember the error code at
the moment. I need this WD Unlock.exe program to work so that I can access the
contents of my Western Digital hard drive.
--
Do not reply 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=16302
Summary: [oblivion] can not skip the intro movie by press ESC
Product: Wine
Version: 1.1.8
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: major
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: wangbinrobin(a)yahoo.com.cn
when runing Oblivion on Windows, we can skip the intro movie by pressing ESC,
but when runing Oblivion by wine, we can not skip it by ESC. it is quite a long
time to wait the intro movie end.
The graphic card I use is ATI Radeon 2600, driver 8.10
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=54295
Bug ID: 54295
Summary: Touhou Puppet Dance Performance: Shard of Dreams Can't
Locate Base Game Data After Installation
Product: Wine
Version: 8.0-rc3
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: rjtulloh(a)gmail.com
Distribution: ---
Created attachment 73863
--> https://bugs.winehq.org/attachment.cgi?id=73863
Log file produced by the expansion when it can't find the base game's files.
Shard of Dreams is an expansion to Touhou Puppet Dance Performance by developer
FocasLens. In order to be played, the base game needs to be installed on the
same system as the expansion.
On Windows, the expansion can be launched immediately after:
- Installing the base game
- Installing the expansion
Using Wine, the expansion won't launch after running the same installers.
The expansion can be launched by adding a symbolic link with the name "notkey"
in the expansion's installation folder which points to the base game folder.
But this workaround is not needed on Windows.
The expansion also produces an error log when launched without the notkey link.
The log 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=56109
Bug ID: 56109
Summary: Broken Radiobutton navigation (Up/Down, Accelerators)
in several InnoSetup installers
Product: Wine
Version: 9.0-rc3
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: user32
Assignee: wine-bugs(a)winehq.org
Reporter: kyle.kcsoftwares(a)gmail.com
Distribution: ---
Created attachment 75779
--> https://bugs.winehq.org/attachment.cgi?id=75779
Ant Renamer
Broken Radiobutton navigation (Up/Down, Accelerators) in several InnoSetup
installers
Radiobuttons :
I &Accept ..
I do ¬ accept ...
- Click on one or the other then VK_UP or VK_DOWN => Focus change (dotted
rectangle) while selection does not move => THIS IS A BUG
- ALT+A and ALT+N have no effect => THIS IS A BUG
Happens with Ant Renamer 2.12 (see screenshot), TuxPaint 0.9.22 and several
other Inno Setup installers
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.