https://bugs.winehq.org/show_bug.cgi?id=56311
Bug ID: 56311
Summary: HwINFO does not display temperatures
Product: Wine
Version: 9.0
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: celestial.ameba(a)gmail.com
Distribution: ---
I would expect to see 2-4 temperature sensors listed for the CPU and
Motherboard listed in the Sensor Status window. Instead there are no entries at
all. The exact names of the sensor will vary based on the computer's specific
hardware.
It can be accessed by clicking the following buttons:
Start>Sensors>CPU[#0][CPU NAME]
The values I am expecting can be found using `lm-sesnors` and `watch sensor`
The values are also available via `cat /sys/class/thermal/thermal_zone*/temp`
FYI: As of Wine 9.0 you need to downgrade from windows 10 to windows 7 in
winecfg in order to get past the landing window.
`
--
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=56976
Bug ID: 56976
Summary: Diggles The Myth of Fenris v2.1.1.10: intro video
doesn't work
Product: Wine
Version: 9.13
Hardware: x86-64
OS: Linux
Status: NEW
Keywords: regression
Severity: normal
Priority: P2
Component: winegstreamer
Assignee: wine-bugs(a)winehq.org
Reporter: gyebro69(a)gmail.com
CC: z.figura12(a)gmail.com
Regression SHA1: 2a0a43627b9bf3d2073e06322d651a827af64cc7
Distribution: ArchLinux
Created attachment 76803
--> https://bugs.winehq.org/attachment.cgi?id=76803
plain terminal output, gst-discoverer output
This bug report is about the 2020 remake/re-release of the game
Diggles/Wiggles. The game is available on Steam and GOG. I tested with the
GOG.com version (v2.1.1.10).
Description: the video file startup.mov should be played on game start but the
video doesn't work: only black screen is shown and there is no audio either.
Pressing <Esc> is skipping the unplayable video and the game loads the main
menu.
gst-play opens and plays the video properly.
Reverting commit
commit 2a0a43627b9bf3d2073e06322d651a827af64cc7
(winegstreamer: Implement MPEG-4 audio to wg_format conversion.)
fixes the problem and the intro video works properly.
As far as I know there is no demo version available.
Please let me know if you need debug logs.
--
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=58054
Bug ID: 58054
Summary: concurrent modifications of C++ collection during
iteration
Product: Wine
Version: unspecified
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: enhancement
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: christophgil(a)gmail.com
Distribution: ---
Deleting elements from a C++ collection during iteration is not allowed.
This is a frequent programming error which goes unnoticed.
It is not reported as a runtime error and tolerated on native Windows, while
it causes page faults in Wine.
This bug in Windows executables may be reason why programs fail on Wine.
Suggestion: Please report this as a runtime error and/or
make the runtime lib tolerant.
--
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=58179
Bug ID: 58179
Summary: Boardviewer 2.0 has poor performance when zooming or
scrolling
Product: Wine
Version: 10.6
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: d2d
Assignee: wine-bugs(a)winehq.org
Reporter: svyatpro(a)gmail.com
Distribution: ---
Created attachment 78474
--> http://bugs.winehq.org/attachment.cgi?id=78474
debuglog
When using Boardviewer with Wine's D2D1 implementation the performance of
scrolling or zooming is slow. Using native D2D1 performance is great.
1. You need to download Boardviewer http://boardviewer.net/
2. Open any boardview diagram for example this
https://drive.google.com/file/d/1Ir0GZAr8YEy5XcZf1v1p6DhCarHl2S5q/view
3. Scroll or zoom-in zoom-out and see how slow it is
--
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=58140
Bug ID: 58140
Summary: ODBC using unixodbc stopped working due to regression
merge between 9.0 and 10.0
Product: Wine
Version: 10.0
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: blocker
Priority: P2
Component: odbc
Assignee: wine-bugs(a)winehq.org
Reporter: heiko.rabe+winehq(a)peopleware.com
Distribution: ---
The following fix prevent proper usage of ODBC interface based on unixodbc
provided DSN's:
https://gitlab.winehq.org/wine/wine/-/commit/85047505f342b6767b9f48cbcdae2b…
I'm using an odbc.ini as follows located at `/etc/odbc.ini`
```
[test]
Driver=PostgreSQL Unicode
Description=PostgreSQL Data Source
Servername=xyz.internal.com
Port=5432
UserName=xyz
Password=xyz_password
Database=test
SSLMode=prefer
Debug=0
CommLog=0
```
This leads to following wine registry entries in `system.reg` file:
```
[Software\\ODBC\\ODBC.INI\\test] 1744806811
#time=1dbaecbc3836bb4
"Driver"="PostgreSQL Unicode"
[Software\\ODBC\\ODBCINST.INI\\ODBC Drivers] 1744806811
#time=1dbaecbc3834d1e
"PostgreSQL ANSI"="Installed"
"PostgreSQL Unicode"="Installed"
```
Testing it with `isql` tool on linux the connect is successful and i can select
data from database:
```
isql test
+---------------------------------------+
| Connected! |
| |
| sql-statement |
| help [tablename] |
| quit |
| |
+---------------------------------------+
SQL>
```
The Windows application using a driverconnect with connect string "DSN=test".
Unfortunately the fix linked above searches the driver key now on a complete
different registry key and tries only to open it from there. Versions previous
to 10.0 are using the registry keys shown above and are working, version 10.0
now tries only:
```
[Software\\ODBC\\ODBC.INI\\ODBC Data Sources] 1744806811
#time=1dbaecbc3836bb4
```
which is not present, will be created by requesting the driver and fails, cause
the driver key can only be found on the above shown reg key, that 9.0 correctly
supports.
This stops working with ODBC based on unixodbc in version 10.0 and higher now.
To me it's not clears, what problem the fix linked above should address. My
guess would be, that one of following relates to the problem:
- ODBC supports user and system DNS (system DNS seems now not longer be valid)
- Wine runtime doesn't create the correct registry entries on 'wineboot' (leads
to failing fix)
- overlooked to support unixodbc at all and only tested with Microsoft ODBC
drivers only.
--
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=44322
Bug ID: 44322
Summary: Rapid Environment Editor startup error
Product: Wine
Version: 3.0-rc5
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: sergey.kz.main(a)gmail.com
Distribution: ---
Created attachment 60180
--> https://bugs.winehq.org/attachment.cgi?id=60180
Logs 1
Startup error
--
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=56412
Bug ID: 56412
Summary: cslol-manager Failed to find kernel32 ptr CreateFileA
Product: Wine
Version: 9.3
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: kernel32
Assignee: wine-bugs(a)winehq.org
Reporter: Deresiant(a)protonmail.ch
Distribution: ---
Created attachment 76174
--> https://bugs.winehq.org/attachment.cgi?id=76174
WINEDEBUG=+seh,warn+all wine cslol-manager.exe
cslol-manager fails to patch custom skin into game, saying "Failed to find
kernel32 ptr CreateFileA"
I press "run" in the program after line 201 in the winelog.txt
It pauses for a moment at line 497 in the winelog.txt before failing and
displaying an error.
The error the program displays is at this line:
https://github.com/LeagueToolkit/cslol-manager/blob/86ba488aa5a8b92bc3a25c6…
--
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=22630
Summary: CDBurnerXP 3.0.x doesn't initially show its menu bar
in data/audio mode
Product: Wine
Version: 1.1.44
Platform: x86-64
URL: http://cdburnerxp.se/downloads/releases/3.0.x/
OS/Version: Linux
Status: UNCONFIRMED
Severity: minor
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: RandomAccountName(a)mail.com
Created an attachment (id=27813)
--> (http://bugs.winehq.org/attachment.cgi?id=27813)
Terminal output
After choosing a mode on the initial selection screen and clicking through any
messages that pop up, a menu bar should appear, but this only works in audio CD
ripping mode (lowest option).
The other two modes - data disc and audio CD mode - don't display any menu bar
at first. Maximizing the internal window makes it sort of appear, but it's
empty except for the small icon from that window. It will fully appear if the
program window is minimized and restored, or if another window is opened in
front of it and then minimized or closed.
--
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=57955
Bug ID: 57955
Summary: Ableton Live 12.1.10: Main interface is unusable
Product: Wine
Version: 10.3
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: pedrodarch15b(a)gmail.com
Distribution: ---
On both GNOME and KDE Plasma, the latest Live 12.1 window does very weird
things with it's main window. What I can best describe it as is, for some
reason it stretches itself down vertically by what's seemingly the size of what
would be the title bar of the application. When running Live with window
manager decorations / control enabled under Wine configuration, this causes the
application window to bounce up and down very rapidly, bringing most of my
machine's CPU time with it. This makes the whole application practically
unusable.
When running on a virtual desktop, the stretch-up-and-down-sorta movement does
not happen, however, with the main window stretched downwards, mouse clicks and
things respond a few pixels off vertically, and the application is not usable
in this state. Interestingly, the same doesn't happen on Live's subwindows,
such as the settings window or anything else really
Prior to Live 12.1.5 this could be mitigated by using a hotkey to make Ableton
run full screen. With recent Ableton updates this doesn't seem to work anymore.
Note: disabling HiDPI mode in Live's settings doesn't make the problem go away
Note: dxvk had to be installed on the prefix so that non-main windows aren't
rendered black (this should probably be reported in another bug)
Tested on Live Trial 12.1.10, download URL is
https://cdn-downloads.ableton.com/channels/12.1.10/ableton_live_trial_12.1.…
--
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=58136
Bug ID: 58136
Summary: Toolbar is black
Product: Wine
Version: 10.6
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: comctl32
Assignee: wine-bugs(a)winehq.org
Reporter: axis6404(a)proton.me
Distribution: ---
Created attachment 78412
--> http://bugs.winehq.org/attachment.cgi?id=78412
test(exe+src)
Toolbar is black. It changes color when the mouse passes over the tool buttons.
--
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=42295
Bug ID: 42295
Summary: Loaded TurboCAD Delux 2D/3D into WINE. Appeared to
load normally, but when attempted to run program
received a critical error problem and the program shut
down. Attached is the back trace that was provided.
Product: Wine
Version: unspecified
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: rsmach.rl(a)gmail.com
Distribution: ---
Created attachment 57016
--> https://bugs.winehq.org/attachment.cgi?id=57016
Report or error occurance that was generated when attempting to run the
program.
The program is set to run in a Windows 7 environment and was attempting to run
in Wine. The program is a computer aided design, TurboCAD Deluxe 2D/3D v. 20.
Loading of the program went smoothly but a critical error occurs when the
program is started,
--
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=41919
Bug ID: 41919
Summary: Regression : impossible to finish installation of
Indiana Jones The Original Trilogy
Product: Wine
Version: 1.9.24
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: fevrier.simon(a)gmail.com
Distribution: Ubuntu
Ubuntu 16.10
It seems the regression appear between Wine 1.7.18 and 1.7.29.
Normally, no problem
Regression : a pop up window say "Insert the disk : 1" but the disk is inserted
Nothing different between versions in the poor logs.
The regression page say to test with the latest code. I will try but I don't
think it will be useful. For a "git bisect" method : too expensive for my
computer, but I will try to have a look at the commits' information.
It doesn't work In wine 1.9.24.
--
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=55990
Bug ID: 55990
Summary: KakaoTalk incorrectly renders certain user profile
elements
Product: Wine
Version: 8.21
Hardware: x86-64
URL: https://app-pc.kakaocdn.net/talk/win32/KakaoTalk_Setup
.exe
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: gdiplus
Assignee: wine-bugs(a)winehq.org
Reporter: jinoh.kang.kr(a)gmail.com
CC: gang65(a)poczta.onet.pl, infyquest(a)gmail.com
Distribution: ---
Created attachment 75597
--> https://bugs.winehq.org/attachment.cgi?id=75597
actual profile rendering (gdiplus=builtin)
Attached are some screenshots of the same profile in builtin and native.
Note that the profile has animated elements and "snowing" background; no
attempt has been made to capture the exact same frame.
Steps to reproduce:
1. Create a KakaoTalk account via mobile client (Android or iOS).
2. Log in to the account.
3. Use the "multi-profile" feature to place elements.
Expected behavior:
See attachment "expected profile rendering (gdiplus=native)"
Actual behavior:
See attachment "actual profile rendering (gdiplus=builtin)"
a. Translucent background and border on some widgets/components are absent.
b. Font rendering is slightly different; pay special attention on the kerning.
c. Sampling and anti-aliasing is slightly different.
--
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=58173
Bug ID: 58173
Summary: Save As... truncated text for EOL due to word wrap
Product: Wine
Version: 10.6
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: comdlg32
Assignee: wine-bugs(a)winehq.org
Reporter: kyle.kcsoftwares(a)gmail.com
Distribution: ---
Created attachment 78463
--> http://bugs.winehq.org/attachment.cgi?id=78463
Truncated word wrap
Open Notepad
Save As... truncated text for EOL due to word wrap
ReactOS affected too: https://jira.reactos.org/browse/CORE-19803
--
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=58174
Bug ID: 58174
Summary: NS Basic Palm 6.0 installer shows incorrect label
("verification failed ?")
Product: Wine
Version: 10.6
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: kyle.kcsoftwares(a)gmail.com
Distribution: ---
Created attachment 78464
--> http://bugs.winehq.org/attachment.cgi?id=78464
Screenshot in Wine 10.6
NS Basic Palm 6.0 installer
https://palmdb.net/content/files/tools-dev/nsbasic/NSBasic_Palm.zip
Wine 10.6
installer shows incorrect label ("verification failed ?")
Note: ReactOS affected similarly https://jira.reactos.org/browse/CORE-19555
--
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=52531
Bug ID: 52531
Summary: Can not use backspace to delete in cmd in xterm
Product: Wine
Version: 7.1
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: cmd
Assignee: wine-bugs(a)winehq.org
Reporter: huupoke12(a)gmail.com
Distribution: ---
When running cmd with `wine cmd`, the shell run Wine's cmd.
But when I press "Backspace" on the keyboard to delete the previous character,
the Wine's cmd instead display "^H" instead of delete the character.
The terminal emulator I'm using is `xterm`, which use "Backspace" control
character (\x08) instead of "Delete" control character (\x7f) as the Erase
character.
Terminal output
```
$ wine cmd
Microsoft Windows 6.1.7601
Z:\home\huupoke12>aaaa^H^H^H
```
--
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=58172
Bug ID: 58172
Summary: Core Temp: label display with cut text in all Settings
tabs
Product: Wine
Version: 10.6
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: kyle.kcsoftwares(a)gmail.com
Distribution: ---
Created attachment 78461
--> http://bugs.winehq.org/attachment.cgi?id=78461
core temps settings Wine 10.6
Core Temp 1.18.1 in Wine 10.6
Open Core Temp
Open Settings
Wrong display on all tabs (truncated text)
--
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=49651
Bug ID: 49651
Summary: Wizard101 Graphic crash error
Product: Wine-staging
Version: unspecified
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: Darksaber203(a)protonmail.com
CC: leslie_alistair(a)hotmail.com, z.figura12(a)gmail.com
Distribution: ---
Created attachment 67864
--> https://bugs.winehq.org/attachment.cgi?id=67864
The wine error backlog it gave me
After Playing Wizard101 for a while it always keeps crashing with the error
"WizardGraphicalClient.exe has encountered a serious problem and needs to
close"
When i first open the game is runs amazing but after a while it will start
lagging then later on it crashes due to this bug.
--
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=56444
Bug ID: 56444
Summary: Plogue sforzando GUI is always one animation frame
behind
Product: Wine
Version: 9.4
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: d2d
Assignee: wine-bugs(a)winehq.org
Reporter: s_chriscollins(a)hotmail.com
Distribution: ---
Created attachment 76204
--> https://bugs.winehq.org/attachment.cgi?id=76204
video showing the bug
The free VST plugin Plogue sforzando always lags one animation frame behind
what it should be. I believe this might only happen with NVIDIA GPUs, as the
issue does not occur on my laptop (radeon driver) or in VirtualBox. Please see
the attached video for a demonstration of the bug.
STEPS TO REPRODUCE
1. Download and install Plogue sforzando: https://www.plogue.com/downloads.html
2. Launch "sforzando x64" from the application menu.
3. Click on the tabs and keyboard keys.
ACTUAL RESULT
The GUI always displays the preceding frame generated by the application, but
not the current frame, making things appear laggy/unresponsive, etc.
EXPECTED RESULT
The GUI should update as soon as I click on an interactable element.
MY COMPUTER
OS: KDE Neon 6.0 User Edition (Plasma Desktop 6.0.2, KDE Frameworks 6.0.0, Qt
6.6.2)
Linux Kernel: 6.5.0-25-lowlatency (64-bit)
Motherboard: ASRock X58 Extreme3 (Intel X58 chipset)
CPU: Intel Core i7-990x Gulftown (3.46 GHz hexa-core, Socket 1366) @ 4.15 GHz
RAM: 24GB (6x G.Skill 4GB DDR3 PC3-10666 1333 MHz) @ 1430 MHz
Video: EVGA NVIDIA GeForce RTX 2080 SUPER w/ 8GB RAM
NVIDIA video driver: 550.54.14
--
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=48107
Bug ID: 48107
Summary: Animated cursor are not played when loaded into a
static control.
Product: Wine
Version: unspecified
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: user32
Assignee: wine-bugs(a)winehq.org
Reporter: carlo.bramix(a)libero.it
Distribution: ---
If you try to assign an animated cursor to a static control, the animation is
not played. Instead, it works fine on Windows XP.
To verify this defect, you can use the test program "AniTest.zip" from this
page:
https://jira.reactos.org/browse/CORE-16344
It just shows the first frame and then it stops.
--
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=25394
Summary: MPQEdit beta: Rebar menus don't work properly
Product: Wine
Version: 1.3.8
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: adys.wh(a)gmail.com
Created an attachment (id=32314)
--> (http://bugs.winehq.org/attachment.cgi?id=32314)
Coolbar Menu source
Download: http://zezula.net/download/mpqediten32_beta.zip
- Run $ wine mpqeditor
- Open a menu
- Hover an element in the menu
The effects are complicated to explain, but at that point everything goes
crazy.
Ladislav Zezula, author of MPQEditor, has kindly agreed to share the relevant
bits of source; I have attached them in a zip:
"""
TCoolMenu::Create is the function that creates the menu, it requires
to be called when the coolbar is empty.
The WndMain.cpp is heavily cut, and it just shows how the window
messages are handled by the cool menu.
"""
No relevant log messages.
Note: I have not tried compiling & running the attached source; if someone
could build an exe and attach it it'd be great.
--
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=38284
Bug ID: 38284
Summary: Last Half of Darkness: Society of the Serpent Moon
demo has slow performance without native d3dx9_36
Product: Wine
Version: 1.7.39
Hardware: x86-64
URL: http://www.lasthalfofdarkness.com/moon/demo.htm
OS: Linux
Status: NEW
Keywords: download
Severity: normal
Priority: P2
Component: directx-d3dx9
Assignee: wine-bugs(a)winehq.org
Reporter: andrey.goosev(a)gmail.com
Distribution: ---
Created attachment 51117
--> https://bugs.winehq.org/attachment.cgi?id=51117
+tid+d3dx
Just when a hero is talking by phone at the beginning.
--
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=50888
Bug ID: 50888
Summary: FlatOut 2 shadows are red with builtin d3dx9_30
Product: Wine
Version: 6.5
Hardware: x86-64
URL: https://www.pcworld.pl/ftp/pobierz/gry/3642.html
OS: Linux
Status: NEW
Keywords: download
Severity: minor
Priority: P2
Component: directx-d3d-util
Assignee: wine-bugs(a)winehq.org
Reporter: andrey.goosev(a)gmail.com
Distribution: ---
Created attachment 69701
--> https://bugs.winehq.org/attachment.cgi?id=69701
+d3dx
wine-6.5-41-g6ca1a92684f
--
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=45469
Bug ID: 45469
Summary: MotoGP 13 Demo - Black screen after launch
Product: Wine
Version: 3.12
Hardware: x86-64
URL: https://www.gamewatcher.com/downloads/motogp-13-downlo
ad/motogp-13-demo
OS: Linux
Status: NEW
Keywords: download
Severity: minor
Priority: P2
Component: directx-d3dx9
Assignee: wine-bugs(a)winehq.org
Reporter: andrey.goosev(a)gmail.com
Distribution: ---
0009:fixme:d3dx:d3dx9_sprite_Begin Flags unsupported: 0x18
0009:fixme:d3dx:d3dx9_sprite_SetWorldViewLH iface 0x130510, world 0x10456c40,
view 0x10456c40 stub!
Solves with native d3dx9_43
wine-3.12-110-g414fe80aeb
--
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=58169
Bug ID: 58169
Summary: Trae installer fails: "Failed to expand shell folder
constant userpf"
Product: Wine
Version: 10.6
Hardware: x86-64
URL: https://lf-cdn.trae.ai/obj/trae-ai-us/pkg/app/releases
/stable/1.0.12120/win32/Trae-Setup-x64.exe
OS: Linux
Status: NEW
Keywords: download
Severity: normal
Priority: P2
Component: shell32
Assignee: wine-bugs(a)winehq.org
Reporter: xerox.xerox2000x(a)gmail.com
Distribution: Debian
Someone reported this on reddit.
A messagebox appears with the message mentioned in the title, and the installer
exits.
Patch below makes the installer succeed, but I'm too unfamiliar with the code
in shellpath.c to know id this is right. Any pointers welcome.
diff --git a/dlls/shell32/shellpath.c b/dlls/shell32/shellpath.c
index 1a52717651e..20670b854b2 100644
--- a/dlls/shell32/shellpath.c
+++ b/dlls/shell32/shellpath.c
@@ -2039,7 +2039,7 @@ static const CSIDL_DATA CSIDL_Data[] =
},
{ /* 0x6e */
.id = &FOLDERID_UserProgramFiles,
- .type = CSIDL_Type_Disallowed, /* FIXME */
+ .type = CSIDL_Type_User,//CSIDL_Type_Disallowed, /* FIXME */
.category = KF_CATEGORY_PERUSER,
.name = L"UserProgramFiles",
.parent = &FOLDERID_LocalAppData,
--
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.