https://bugs.winehq.org/show_bug.cgi?id=47743
Bug ID: 47743
Summary: Witcher Script Merger doesn't work on 4.15
Product: Wine
Version: 4.15
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: timofeevsv1989(a)gmail.com
Distribution: ---
It works on 4.10, but on 4.15 it cant find its config, and always loosing
dependencies.
--
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=41075
Bug ID: 41075
Summary: Into The Stars requires libcef.dll
Product: Wine
Version: 1.9.15
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: fjfrackiewicz(a)gmail.com
Distribution: ---
Created attachment 55258
--> https://bugs.winehq.org/attachment.cgi?id=55258
Terminal output Wine 1.9.15-272-g0b49495
While testing the latest git version of Wine with this game, I noticed that
there is the following terminal output when starting the game:
err:module:import_dll Library libcef.dll (which is needed by L"C:\\GOG
Games\\Into the
Stars\\Nebraska\\CefRuntime\\Binaries\\Win64\\CefFramework.dll") not found
Some basic googling shows that this might be a .DLL related to Chrome but I am
not 100% sure.
If this bug is invalid, please let me know. Terminal output 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=37711
Bug ID: 37711
Summary: payday 2 broken lighting
Product: Wine
Version: unspecified
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: directx-d3d
Assignee: wine-bugs(a)winehq.org
Reporter: davyaxel(a)free.fr
Distribution: ---
On wine/radeonsi, payday 2 has broken lighting, and objects have no shadows.
This doesn't make the game unplayable. It's just objects have no shadows.
Gallium Nine has light working.
While trying to fix a bug with Gallium Nine textures of some parts of the road,
I tested different configuration of input channels / default values for empty
channels for the textures used by the game.
In particular for depth stencil formats, like D3DFMT_D24S8 used by the game, we
have the depth on r, the stencil on g, and b=0 a=1
I don't remember what different combinations I tried for this format, but
basically when different from that, I got broken lights exactly like wine.
Which makes me think wine probably doesn't handle this format correctly.
If you want to reproduce we have a server with the trace (too big to put here -
taken with apitrace), come on our channel (#d3d9) to ask for access.
--
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=43819
Bug ID: 43819
Summary: steam overlay - unusable on ultrawide screen
Product: Wine
Version: 2.17
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: bronsonmathews(a)gmail.com
Distribution: ---
Have an issue with steam overlay. It reners semi-transparent but nothing can be
used in it. This issue only occurs on my machine with an ultrawide screen. On
my other identical machine with identical OS, it works flawless.
--
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=57037
Bug ID: 57037
Summary: Hi
Product: Mono
Version: main
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: mono
Assignee: wine-bugs(a)winehq.org
Reporter: salvadorxxx922(a)gmail.com
CC: madewokherd(a)gmail.com
Distribution: ---
Created attachment 76892
--> https://bugs.winehq.org/attachment.cgi?id=76892
P
Pp
--
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=56288
Bug ID: 56288
Summary: Patch provided but needs to be added to official
Sources
Product: Wine
Version: 9.1
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: mscoree
Assignee: wine-bugs(a)winehq.org
Reporter: SMA.TFG(a)gmx.de
Distribution: ---
Here a User had provided a Patch that would fix the Crash of Solid Edge but we
need a Person who can add this to the offical Repos
https://bugs.winehq.org/show_bug.cgi?id=55736
--
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=56467
Bug ID: 56467
Summary: Calling the GetPrivateProfileString interface failed
Product: Wine
Version: 8.0.1
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: csumushu(a)gmail.com
Distribution: ---
I have written a C program to read an INI file, and I found that when a key
name contains spaces, it can be read successfully on Windows, but fails to read
when the executable program is run using Wine.
//------------------------Here is the code of the
program-----------------------
#include <Windows.h>
#include <stdio.h>
#define MAX_BUFFER_SIZE 260
int main(int argc, char* argv[])
{
char iniFile[MAX_BUFFER_SIZE];
GetPrivateProfileString("SYS_PARA_AREA", "VFSRootPath Item", "", iniFile,
MAX_BUFFER_SIZE, "CONFIG.INI");
if (iniFile[0] != '\0')
{
printf("VFSRootPath Item: %s\n", iniFile);
}
else
{
printf("Failed to read VFSRootPath Item from ini file.\n");
}
return 0;
}
//-----------------------------------------------------------------------------
//--------------------Here is the content of the INI file---------------------
[SYS_PARA_AREA]
VFSRootPath Item=C:\ProgramData\ne1\
//-----------------------------------------------------------------------------
On Windows, I compile an executable program using `gcc -o test test.c` and can
read content normally. However, when I copy the program to Ubuntu and attempt
to run it with Wine, it fails to read content.
Here is my environment information:
Operating System: Ubuntu 23.10
Wine: wine-8.0.1 (Ubuntu 8.0.1~repack-3ubuntu2)
--
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=39768
Bug ID: 39768
Summary: scaling window for games with low resolution
Product: Wine
Version: 1.8-rc3
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: enhancement
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: legluondunet(a)free.fr
Distribution: ---
Hello,
some old games do not have a resolution bigger than 640x480.
For example:
Shivers
The longest journey
Motoracer
..
and the modern displays does not have a 4:3 ratio, so it is not possible to put
this games in fullscreen or the games will be stretch. Some modern screens do
not even support this resolution.
Do you plan to add a scaling feature to wine?
LGDN
--
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=57025
Bug ID: 57025
Summary: error with %ERRORLEVEL% when running command in
sequence
Product: Wine
Version: 9.12
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: cmd
Assignee: wine-bugs(a)winehq.org
Reporter: nemos200408(a)gmail.com
Distribution: ---
When running several commands in sequence (by &) next command not see error
code (%ERRORLEVEL%) from previous
Problem absent in wine 9.11 and present in 9.12-9.14.
To reproduce
in fresh cmd session (wine64 cmd) run from command line
test.bat & echo %ERRORLEVEL%
in test.bat only one command
exit /b 1
in wine 9.11 it output
1
in wine 9.12-9.14 it output
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.