https://bugs.winehq.org/show_bug.cgi?id=46909
Bug ID: 46909
Summary: Missing (black) textures in Black & White
Product: Wine
Version: 3.20
Hardware: x86
OS: Linux
Status: NEW
Keywords: regression
Severity: normal
Priority: P2
Component: directx-d3d
Assignee: wine-bugs(a)winehq.org
Reporter: gyebro69(a)gmail.com
CC: hverbeet(a)gmail.com
Regression SHA1: 961a94ac046644004718c56bfeeb81740cb73793
Distribution: ---
Created attachment 63986
--> https://bugs.winehq.org/attachment.cgi?id=63986
plain terminal output
Most objects (trees, buildings, people) are pitch black in Black & White and in
the Creature Isle expansion.
Changing graphical details in the setup menu or disabling GLSL, CSMT don't make
a difference.
Reproduced the problem with nouveau/Mesa 19.0.0. and with Nvidia binary drivers
418.49.04.
There is no demo version available. Please let me know if you need debug logs.
I found that the problem is present since commit
961a94ac046644004718c56bfeeb81740cb73793.
I couldn't revert the commit on current git, but I verified that textures are
rendered properly with the previous commit.
Still present in wine-4.4-188-gc988910cae (also in Staging).
OpenGL vendor string: NVIDIA Corporation
OpenGL renderer string: GeForce GT 730/PCIe/SSE2
OpenGL core profile version string: 4.6.0 NVIDIA 418.49.04
--
Do not reply 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=36764
Bug ID: 36764
Summary: Rogue Squadron 3D 1.3: Unable to setup controller
in-game
Product: Wine
Version: 1.7.20
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: dev(a)xod.me
Created attachment 48822
--> http://bugs.winehq.org/attachment.cgi?id=48822
Console output, doesn't output anything when the issue happens, though.
When trying to setup controller buttons in the Joystick settings panel in game,
all buttons get mapped to BUTTON 1.
Even though the joystick calibration tool in the game's launcher correctly
recognizes the gamepad (an Xbox 360 wireless controller using the xpad driver
from Steam).
It could be a problem with auto-fire.
I'm leaving the severity to normal since it's a kind of game meant to be played
with a joystick or pad. Mouse or keyboard control of the ship are quite aweful.
--
Do not reply 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=19098
Summary: Regedit randomly crashes when deleting registry keys
Product: Wine
Version: 1.1.24
Platform: PC-x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: acheron(a)front.ru
When I try to delete a key regedit may crash. Error messages wary. Sometimes it
displays an error window suggesting to write a bug report, sometimes it
doesn't. The most frequent error message seems to be similar to
wine: Unhandled page fault on write access to 0x00790051 at address 0x7ef977f9
(thread 0009), starting debugger...
err:seh:raise_exception Unhandled exception code c0000005 flags 0 addr
0x7ef97d3e
I don't know if this is the cause or not, but I've encountered this problem
only deleting keys of type REG_SZ and containing non-ASCII characters.
--
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=46923
Bug ID: 46923
Summary: X-Tension, X-Beyond The Frontier: Dynamic light breaks
after opening up a menu
Product: Wine
Version: 4.4
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: directx-d3d
Assignee: wine-bugs(a)winehq.org
Reporter: 19non91(a)gmail.com
Distribution: ---
Created attachment 64026
--> https://bugs.winehq.org/attachment.cgi?id=64026
lspci | grep VGA and Xorg gpu config
In place of thousand words: https://imgur.com/a/7oQESA1
--
Do not reply 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=46721
Bug ID: 46721
Summary: Two quotes together (in outer quotes) not parsed
correctly in argv
Product: Wine
Version: 4.2
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: kernel32
Assignee: wine-bugs(a)winehq.org
Reporter: brendan(a)redmandi.com
Distribution: ---
Created attachment 63693
--> https://bugs.winehq.org/attachment.cgi?id=63693
kernel32: Allow double quote style escape in argv
In Windows, two quotes together (within outer quotes) represents a
single quote (with the first quote - of the inner quotes - acting as an escape
character).
Thus calling 'CreateProcessA' with four quotes as a parameter (i.e. '""""')
will represent a single quote (i.e. '"'). In wine, this is currently being
treated as two separate sets of quotes and thus results in a empty value.
The attached patch fixes the problem.
This can be tested with the following (just copy and paste):
cat << END > test.c
#include <windows.h>
#include <stdio.h>
int main(int argc, const char *argv[])
{
PROCESS_INFORMATION processInfo;
STARTUPINFO startupInfo;
memset(&startupInfo, 0, sizeof startupInfo);
startupInfo.cb = sizeof startupInfo;
if (!CreateProcessA(
NULL,
"printArgs.exe \"\"\"\"",
0,
0,
TRUE,
0,
NULL,
NULL,
&startupInfo,
&processInfo)) {
DWORD dwLastError = GetLastError();
fprintf(stderr, "failed to execute printArgs.exe (%lu)\n",
dwLastError);
return 1;
}
return 0;
}
END
cat << END > printArgs.c
#include <stdio.h>
int main(int argc, const char *argv[]) {
for (int i = 0; i < argc; i++)
printf("%s\n", argv[i]);
return 0;
}
END
x86_64-w64-mingw32-gcc test.c -o test.exe
x86_64-w64-mingw32-gcc printArgs.c -o printArgs.exe
wine64 test
--
Do not reply 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=45703
Bug ID: 45703
Summary: Microsoft Office 365 applications crash on WINE 3.14
Product: Wine
Version: 3.14
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: alexander-winehq(a)xmine128.tk
Distribution: ---
Created attachment 62130
--> https://bugs.winehq.org/attachment.cgi?id=62130
Full crash log
In the current version of WINE (3.14) all Office 365 Professional Plus apps
(tested Word, Excel & PowerPoint) crash with the following error:
…
005c:fixme:ole:NdrCorrelationFree (0x267f764): stub
0009:fixme:ole:NdrCorrelationFree (0x32e864): stub
wine: Unhandled page fault on read access to 0x6809b474 at address
0x7bc4015d (thread 0009), starting debugger...
0009:err:seh:raise_exception Unhandled exception code c0000005 flags 0 addr
0x7bc4015d
There is no indication what this could be when comparing with the same
(working) binaries on WINE 3.0.
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=46579
Bug ID: 46579
Summary: [Regression] F.E.A.R. 2: Project Origin screen is
completely light grey while playing intro movie
Product: Wine
Version: 3.1
Hardware: x86-64
URL: https://www.gamewatcher.com/downloads/f-e-a-r-2-projec
t-origin-download/f-e-a-r-2-project-origin-demo
OS: Linux
Status: NEW
Keywords: download, regression
Severity: normal
Priority: P2
Component: directx-d3d
Assignee: wine-bugs(a)winehq.org
Reporter: andrey.goosev(a)gmail.com
CC: matteo.mystral(a)gmail.com
Regression SHA1: 3d6eb8cf1dc1e509a74f85fd2356c6946372ecc5
Distribution: ---
Reverting 3d6eb8cf1dc1e509a74f85fd2356c6946372ecc5 helps.
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=46706
Bug ID: 46706
Summary: Eventide H9 Control bluetooth exception
Product: Wine-staging
Version: 4.2
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: martin.bruset.solberg(a)gmail.com
CC: leslie_alistair(a)hotmail.com, z.figura12(a)gmail.com
Distribution: ---
Created attachment 63667
--> https://bugs.winehq.org/attachment.cgi?id=63667
Backtrace
Eventide H9 Control is an app used to control H9 Harmonizer effect pedals. It
communicates to the pedal via Bluetooth. After installation, it is possible to
start the app in Wine. The interface loads, but it immediately throws an
exception and dies.
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.