https://bugs.winehq.org/show_bug.cgi?id=46823
Bug ID: 46823
Summary: in wcmd.exe, trailing slash in "if exist SomeDir/"
cause always false
Product: Wine
Version: 4.3
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: cmd
Assignee: wine-bugs(a)winehq.org
Reporter: alter(a)ukr.net
Distribution: ---
Created attachment 63849
--> https://bugs.winehq.org/attachment.cgi?id=63849
fix issue with instant false due to trailing slash in 'if exist SomeDir/'
if exist SomeDir/ do-smth.cmd
statement (with ending slash) always return false since
'if exist' CMD implementation start using FindFirstFileW() instead of
GetFileAttributesW() in builtins.c
Such condition appears in MS VisualStudio generated makefiles
There is special case for trailing '\\', but there is no handling for '/'.
The patch proposed fixes this issue and adds corresponding tests for
if exist SomeDir/ do-smth.cmd
if exist "SomeDir/" do-smth.cmd
cases
--
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=47657
Bug ID: 47657
Summary: Character in The Sims 1 Make-A-Celebrity looks
completely white
Product: Wine
Version: 4.14
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: directx-d3d
Assignee: wine-bugs(a)winehq.org
Reporter: sashok.olen(a)gmail.com
Distribution: ---
Created attachment 65100
--> https://bugs.winehq.org/attachment.cgi?id=65100
+ddraw,+d3d,+d3d_shader
It's very close to https://bugs.winehq.org/show_bug.cgi?id=46948 but it only
seems to happen to this particular add-on tool. Actual game still renders just
fine so it's a regression.
To run this tool, you need to have an installation of the actual game.
Attaching +ddraw,+d3d,+d3d_shader 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=47716
Bug ID: 47716
Summary: cat planet fails to start with llvmpipe drivers
Product: Wine
Version: 4.15
Hardware: x86
OS: Linux
Status: NEW
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: madewokherd(a)gmail.com
Distribution: ---
Cat Planet fails to start. It brings up a dialog saying "Unexpected error
occured [sic] when running the game."
It seems that it triggers a floating point exception in the mesa software
drivers.
--
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=48633
Bug ID: 48633
Summary: CSS HTML Validator 2020 - toolbar does not display
properly
Product: Wine
Version: 5.2
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: major
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: support(a)htmlvalidator.com
Distribution: ---
Created attachment 66485
--> https://bugs.winehq.org/attachment.cgi?id=66485
Shows incorrect display of Toolbar (look at row containing "New List" and more)
The Batch Wizard tool in CSS HTML Validator 2020 does not display the Toolbar
properly.
To reproduce:
1. Download trial version at
https://www.htmlvalidator.com/private/css-html-validator-wine-bug-x64-setup…
2. Install and run program.
3. Go to the Batch Wizard (F2).
4. By default, the toolbar is hidden in Wine because it does not display
properly. To force the display of the toolbar, choose Options->Force Toolbar.
5. The toolbar icons and spacing will not display properly. The toolbar buttons
appear to be fully justified, but they should be left justified.
6. The toolbar should look more like it does on Windows (see attachment).
--
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=48736
Bug ID: 48736
Summary: shlwapi: Implement SHLockSharedEx function
Product: Wine
Version: 5.0-rc6
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: shlwapi
Assignee: wine-bugs(a)winehq.org
Reporter: katayama.hirofumi.mz(a)gmail.com
Distribution: ---
Created attachment 66625
--> https://bugs.winehq.org/attachment.cgi?id=66625
The patch
There is no implementation of SHLWAPI!SHLockSharedEx function. This patch will
add 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=48749
Bug ID: 48749
Summary: Spider: Game fails at completion
Product: Wine
Version: 5.3
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: user32
Assignee: wine-bugs(a)winehq.org
Reporter: james.tabor(a)reactos.org
Distribution: ---
Created attachment 66652
--> https://bugs.winehq.org/attachment.cgi?id=66652
Spider from ReactOS
Playing game it locks up at completion.
--
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=49074
Bug ID: 49074
Summary: Nintendulator 0.980 - AVI capture fails due to error
in AVIStreamWrite
Product: Wine
Version: 5.7
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: avifil32
Assignee: wine-bugs(a)winehq.org
Reporter: quietust(a)gmail.com
Distribution: Ubuntu
In Nintendulator 0.980 (a Nintendo Entertainment System emulator), attempting
to record to an AVI file fails with AVIERR_UNSUPPORTED from
AddAudio::AVIStreamWrite when running in Wine Staging 5.7 on Ubuntu 16.04.6
LTS. The same thing happens in Wine-Devel 5.7.
Given that I am the author of this application, I've been able to track down
exactly what's going wrong.
On Windows, the AVIStreamWrite function treats the "lStart" parameter
differently depending on the stream type - for a Video stream it expects it to
be a frame number (increasing by 1 each time), but for an Audio stream it
expects it to be a *sample* number (increasing by "lSamples" each time). In
Wine, however, Audio streams expect "lStart" to increase by 1 each time, just
like Video streams.
I've built two test versions of my application: one that only works on Windows,
and one that only works in Wine. They can be downloaded from the following URL:
https://www.qmtpro.com/~nes/misc/nintendulator_winebug.zip
(sha1 4eca2a261db3fdaa03cbc92cbee307c56ffffac2)
See
https://github.com/quietust/nintendulator/blob/fc91a2abcbe3ad37a1a6e52f12d8…
for relevant source code - these test versions have lines 273-280 commented out
and have "WineHack" hardcoded (to "false" for the Windows version and "true"
for the Wine version) for the check on line 287.
Steps to reproduce:
1. Download and extract the archive linked above
2. Run "nintendulator_windows.exe stars.nes" in Wine
3. Open the "Misc" menu and select "Start AVI Capture"
4. Enter a filename and press Save
5. Set the Compressor to "Full Frames (Uncompressed)" and press OK
6. Press F2 to start emulation and observe that it fails.
7. Repeat steps 2-6 with "nintendulator_wine.exe" and observe that it now works
correctly.
8. Repeat steps 2-7 on Windows and observe that the results are the other way
around.
--
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=49186
Bug ID: 49186
Summary: DXBC compiler generates incorrect spir-v code
Product: vkd3d
Version: 1.1
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: vkd3d
Assignee: wine-bugs(a)winehq.org
Reporter: alex.fishman(a)gmail.com
Distribution: ---
Created attachment 67204
--> https://bugs.winehq.org/attachment.cgi?id=67204
dxbc tessellaton control shader
I'm having issues with tessellation shaders.
Seems that the generated spir-v code is incorrect. After converting the spir-v
to GLSL (spirv-dis) and validating it (glslangValidator) there are errors in
the the following section:
#version 450
layout(vertices = 5) out;
out float gl_ClipDistance[5];
layout(location = 0) out vec2 o0[5];
layout(location = 1) out vec4 o1[5];
vec4 opc[4];
vec4 v1[5];
void control0()
{
v1[1u] = vec4(gl_ClipDistance[0u]);
v1[2u] = vec4(gl_ClipDistance[1u]);
v1[3u] = vec4(gl_ClipDistance[2u]);
v1[4u] = vec4(gl_ClipDistance[3u]);
v1[5u] = vec4(gl_ClipDistance[4u]);
vec4 r0;
r0.x = intBitsToFloat(gl_InvocationID);
o0[gl_InvocationID] = gl_in[floatBitsToInt(r0.x)].gl_Position.xy;
o1[gl_InvocationID] = v1[floatBitsToInt(r0.x)];
}
...
glslangValidator outputs the following error:
ERROR: 0:4: 'gl_ClipDistance' : identifiers starting with "gl_" are reserved
ERROR: 1 compilation errors. No code generated.
Sample DXBC binary 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=45110
Bug ID: 45110
Summary: Crash when running courselab 2.4
Product: Wine
Version: 1.6.2
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: cjrw42(a)gmail.com
Distribution: ---
Created attachment 61295
--> https://bugs.winehq.org/attachment.cgi?id=61295
courselab 2.4 backtrace
I have installed courselab 2.4 (educational resource dev package which creates
HTML based sites), using the MSI, and all appears to have gone OK. Courselab
runs, grabs credentials, generates the licence key which is emailed and entered
fine, but as soon as you begin to create a new project it crashes out.
backtrace included.
--
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.