https://bugs.winehq.org/show_bug.cgi?id=53184
Bug ID: 53184
Summary: It said no Direct3D
Product: Wine
Version: 7.11
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: directx-d3d
Assignee: wine-bugs(a)winehq.org
Reporter: alloyedbrick(a)outlook.com
Distribution: ---
Created attachment 72624
--> https://bugs.winehq.org/attachment.cgi?id=72624
Unity web player
First I can't run Red Alert2 Mental Omega now,but I can run it before
Then Unity web player said no DX9
--
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=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=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=56649
Bug ID: 56649
Summary: Tony Hawk's Pro Skater 3 crashes on startup
Product: Wine
Version: 9.8
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: japareaggae(a)gmail.com
Distribution: ---
Created attachment 76425
--> https://bugs.winehq.org/attachment.cgi?id=76425
Console output of Wine while running the game
## How to reproduce
* Install the game as usual
* Run the "Skate3.exe" binary in the game installation folder
* Click on the "OK" or "Play Tony Hawk's Pro Skater 3" buttons
## Expected results
The game starts
## Actual results
The game crashes
## Build date and operating system
Tested on wine-9.8-6-g79fb59e21ed9, built on 2024-05-07, on an Arch Linux
system.
## Additional builds
This might be a regression since there is a Gold-rated AppDB test result for
Wine version 7.19-staging:
https://appdb.winehq.org/objectManager.php?sClass=version&iId=3823
--
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=55636
Bug ID: 55636
Summary: cannot get rid of prefix status messages
Product: Wine
Version: 8.16
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: minor
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: xantares09(a)hotmail.com
Distribution: ---
I would like to be able to get rid of the 2 messages on creation of prefixes,
but even with WINEDEBUG=-all they never go away, as seen below:
$ echo "int main() {return 0;}" > main.c
$ i686-w64-mingw32-gcc main.c
$ rm -rf ~/.wine
$ WINEDEBUG=-all wine a.exe
wine: created the configuration directory '/home/devel/.wine'
wine: configuration in L"/home/devel/.wine" has been updated.
I see from the code that they end up in wine_dbg_printf which is always printed
wouldnt it make sense for these to be part of one of the debug class/channel so
that it could be filtered by WINEDEBUG ?
--
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.