https://bugs.winehq.org/show_bug.cgi?id=41297
Bug ID: 41297
Summary: Fable Lost Chapters Crash at begins
Product: Wine
Version: 1.9.18
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: mrdeathjr28(a)yahoo.es
Distribution: ---
Created attachment 55623
--> https://bugs.winehq.org/attachment.cgi?id=55623
backtrace-fable-lost-chapters
Game begins normally with cinematics until game shows press left mouse button
for entry and if pressed game crash
However you can push right mouse button (game dont entry) and push esc key or
enter for select and game dont crash but dont entry
--
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=9261
Summary: Final Fantasy 8 with hardware acceleration shows wrong
colors
Product: Wine
Version: 0.9.42.
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-directx-d3d
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: alessandro.guido(a)gmail.com
Created an attachment (id=7514)
--> (http://bugs.winehq.org/attachment.cgi?id=7514)
Snapshots that shows how the game looks
Like the attached image shows, wrong colors are shown when usign Final Fantasy
8 with hardware acceleration enabled.
There are plenty of messages like:
fixme:d3d7:IDirect3DTextureImpl_PaletteChanged
(0x2eb3148)->(00000000,00000100): stub!
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=56802
Bug ID: 56802
Summary: Unhandled exception while installing wps
Product: Wine
Version: 9.0
Hardware: x86-64
OS: Windows
Status: UNCONFIRMED
Severity: critical
Priority: P2
Component: dwmapi
Assignee: wine-bugs(a)winehq.org
Reporter: nedoseghe(a)gmail.com
Created attachment 76605
--> https://bugs.winehq.org/attachment.cgi?id=76605
unhandled exception while installing wps
Unhandled exception: page fault on read access to 0x00000001 in 32-bit code
(0x732918f4).
Register dump:
CS:0023 SS:002b DS:002b ES:002b FS:0063 GS:006b
EIP:732918f4 ESP:0031f718 EBP:0031f724 EFLAGS:00210202( R- -- I - - - )
EAX:00d682f0 EBX:01a9b250 ECX:00000001 EDX:00000002
ESI:00000001 EDI:01a9ac40
--
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=13829
Summary: Wine does not have Japanese fonts
Product: Wine
Version: 1.0-rc4
Platform: Other
OS/Version: other
Status: UNCONFIRMED
Severity: enhancement
Priority: P2
Component: fonts
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: hramrach(a)centrum.cz
These are needed to support Japanese applications.
On Windows there is MS Gothic which is duplicated as MS PGothic and MS UI
Gothic. The later have the Latin range proportional, the first one has the
Latin range fixed width but I suspect these are really the same font with
different spacing.
There is also MS Mincho (and MS PMincho with proportional Latin). This differs
form Gothic in the style of the Japanese glyphs.
--
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=56275
Bug ID: 56275
Summary: MS Speech API not working after 8.21
Product: Wine
Version: 8.21
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: kdcadet(a)gmail.com
Distribution: ---
Created attachment 75994
--> https://bugs.winehq.org/attachment.cgi?id=75994
text-to-speech script and tracebacks
I use wine to run windows speech api through balcon, balabolka commandline
interface.
This worked until wine-staging-8.21
Once upgraded to >= 8.21 this is broken.
It is broken on both Gentoo and Fedora for me.
It still works for both wine-staging 8.0 and wine-vanilla 8.0.
My script and traceback are attached.
The script takes stdin and pipes it to balcon via wine.
I typically test it with `date | tts`
The wine prefix I use:
https://drive.google.com/file/d/19bfCvcOkWITjf5fw9PTXrnogtm3HpvLA/view?usp=…
Components:
balcon: balabolka command line
Available from the microsoft download center:
Microsoft speech platform
MS Speech Zira pro voice
--
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=53960
Bug ID: 53960
Summary: ucrt has different struct layout than msvcrt
Product: Wine
Version: unspecified
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: msvcrt
Assignee: wine-bugs(a)winehq.org
Reporter: euloanty(a)live.com
Distribution: ---
https://bugs.winehq.org/show_bug.cgi?id=51698
I found that bug before it was actually because UCRT definition of struct
_iobuf in wine is just wrong.
This is a serious abi issue that has to be fixed and that is also probably why
UCRT programs do not work very well on wine.
/*
referenced from win10sdk ucrt
C:\Program Files (x86)\Windows Kits\10\Source\10.0.19041.0\ucrt
//-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
//
// Internal Stream Types (__crt_stdio_stream and friends)
//
//-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
// Ensure that __crt_stdio_stream_data* and FILE* pointers are freely
convertible:
struct ucrt_stdio_stream_data
{
union
{
FILE public_file;
char* ptr;
};
char* base;
int cnt;
long flags;
long file;
int charbuf;
int bufsiz;
char* tmpfname;
};
The definition of UCRT is
struct
#if __has_cpp_attribute(__gnu__::__may_alias__)
[[__gnu__::__may_alias__]]
#endif
ucrt_iobuf
{
char* _ptr;
char* _base;
int _cnt;
long _flag;
long _file;
int _charbuf;
int _bufsiz;
char* _tmpfname;
};
while msvcrt is
struct
#if __has_cpp_attribute(__gnu__::__may_alias__)
[[__gnu__::__may_alias__]]
#endif
ucrt_iobuf
{
char* _ptr;
int _cnt;
char* _base;
int _flag;
int _file;
int _charbuf;
int _bufsiz;
char* _tmpfname;
};
The location of _base and _cnt swaps.
--
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=49953
Bug ID: 49953
Summary: LOOT (Load Order Optimization Tool) crashes at launch
Product: Wine
Version: 5.18
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: rtentser(a)yandex.ru
Distribution: ---
Created attachment 68343
--> https://bugs.winehq.org/attachment.cgi?id=68343
Backtrace
https://www.nexusmods.com/skyrimspecialedition/mods/1918
After a crash there is just black window without an interface. It can be closed
with Alt+F4.
I'm using current master (c29f9e6ee7656aa028bb1630284e7d4873bd5b0f) but can
reproduce the problem with 5.0.2 too.
--
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=48056
Bug ID: 48056
Summary: Patch : "winex11: Match keyboard in Unicode" cause
invalid input key
Product: Wine-staging
Version: 4.19
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: charles.gorand.dev(a)gmail.com
CC: leslie_alistair(a)hotmail.com, z.figura12(a)gmail.com
Distribution: ---
Using wine-4.19 + wine-staging 4.19 built from scratch.
Issue :
When hit 'i' key on French keyboard another character ('è' or 'é') is displayed
which is not expected.
Application tested : Starcraft II, Battle.net.
Reverting patch c6521c978cb60a1e7fdc70f794008a7dd0f37903 solve the issue.
I'll try to investigate and provide a patch if I found a solution.
--
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=50070
Bug ID: 50070
Summary: Adobe Creative Cloud authentication fails due to
missing CAPTCHA
Product: Wine-gecko
Version: unspecified
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-gecko-unknown
Assignee: jacek(a)codeweavers.com
Reporter: msdobrescu(a)gmail.com
Distribution: ---
When try to install or run Adobe Creative Cloud, after launch, a login is
required in the Adobe Creative Cloud window. After the credentials are entered,
for an Adobe account and a subscription, a message is displayed:
"You need to install the latest updates to Windows and/or your Adobe apps.
Learn more
Captcha validation has failed"
There is no visible CAPTCHA anywhere in the logon window. As effect, the
authentication fails and there is no possibility to continue.
Internet Explorer can't be installed either, so the process is stuck here.
Operating System: Gentoo Linux
KDE Plasma Version: 5.19.5
KDE Frameworks Version: 5.74.0
Qt Version: 5.15.0
Kernel Version: 5.7.0-sabayon
OS Type: 64-bit
Processors: 8 × Intel® Core™ i7 CPU 920 @ 2.67GHz
Memory: 23,5 GiB of RAM
Graphics Processor: GeForce GTX 1060 6GB/PCIe/SSE2
wine-5.17 (Staging)
--
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=54648
Bug ID: 54648
Summary: Call of Juarez needs "isnan" handling
Product: vkd3d
Version: 1.6
Hardware: x86-64
OS: Linux
Status: NEW
Severity: minor
Priority: P2
Component: hlsl
Assignee: wine-bugs(a)winehq.org
Reporter: andrey.goosev(a)gmail.com
Distribution: ---
0718:err:d3dcompiler:D3DCompile2 Failed to compile shader, vkd3d result -4.
0718:err:d3dcompiler:D3DCompile2 Shader log:
0718:err:d3dcompiler:D3DCompile2 <anonymous>:18:6: E5005: Function "isnan"
is not defined.
1.6-195-g2880be64
--
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.