https://bugs.winehq.org/show_bug.cgi?id=40735
Bug ID: 40735
Summary: Midnight Mysteries: The Edgar Allan Poe Conspiracy
(Steam) fails to start (probably needs msscript)
Product: Wine
Version: 1.9.11
Hardware: x86
OS: Linux
Status: NEW
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: gyebro69(a)gmail.com
Distribution: ---
This is the only game from the Midnight Mysteries series on Steam which refuses
to start.
The game displays an error message after start:
'Exception EOleSysError in module Midnight Mysteries - Edgar Allan Poe
Conspiracy.exe at 0008B9AD. OLE error 80004002.'
In the terminal:
>fixme:msscript:ScriptControl_QueryInterface (0x177000)->({00000112-0000-0000-c000-000000000046} 0x33fca8)
>fixme:ole:CoCreateInstanceEx no instance created for interface {00000112-0000-0000-c000-000000000046} of class {0e59f1d5-1fbe-11d0-8ff2-00a0d10038bc}, hres is 0x80004002
I installed msscript.ocx with winetricks, and now the game window is opened and
sound begins to play for a second then the game throws a different error:
'Access violation error at address....'. The error dialog box can't be
dismissed, it's popping up continuously.
This is the terminal output with native msscript.ocx:
>err:ole:CoCreateInstanceEx apartment not initialised
>fixme:jscript:JScript_SetScriptState unimplemented SCRIPTSTATE_INITIALIZED
>fixme:win:EnumDisplayDevicesW ((null),0,0x33f7e8,0x00000000), stub!
>fixme:win:EnumDisplayDevicesW ((null),0,0x33f638,0x00000000), stub!
wine-1.9.11-112-gd864119
--
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=48233
Bug ID: 48233
Summary: In a 64-bit app, GetSyscolor(COLOR_BTNSHADOW) returns
a darker value than on windows
Product: Wine
Version: 3.6
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: gdi32
Assignee: wine-bugs(a)winehq.org
Reporter: ryampolsky(a)yahoo.com
Distribution: ---
Created attachment 65879
--> https://bugs.winehq.org/attachment.cgi?id=65879
Screenshot, showing shadow drawn with GetSysColor(COLOR_BTNSHADOW)
I recently converted my 32-bit app to 64-bits, and when I run either the 32-bit
version or the 64-bit version under a wine64 WINEPREFIX, the only difference I
notice is the value returned by GetSyscolor(COLOR_BTNSHADOW). On Windows in
both the WIN32 and WIN64 versions of my app, it returns 0xa0a0a0, but on
WINE64, it returns 0x4c4c4c.
On WINE, I'm using the Ubuntu Light theme. With that theme in effect, on
WINE32, GetSysColor(COLOR_BTNSHADOW) returns 0xa5a9ad. But on WINE64, both the
WIN32 and WIN64 versions get 0x4c4c4c. So the shadow looks too dark. Again,
the WIN32 exe gets the right color under WINE32, but the same wrong color as
the WIN64 exe under WINE64 - which is why I think it's a WINE64 bug and not my
app.
Everything else seems to look the same between WINE32 and WINE64.
The attached screenshot shows the About dialog from my app. There's a 3D frame
around the logo at the top - BTNSHADOW on top and left, BTNHIGHLIGHT on bottom
and right. The text below it shows that this is the X64 version of the app,
and prints out the value returned by GetSysColor(COLOR_BTNSHADOW).
--
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=43947
Bug ID: 43947
Summary: Disk size in Wine is not correct
Product: Wine
Version: 2.0
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: christoph.heilmann(a)gmx.de
Distribution: ---
Created attachment 59586
--> https://bugs.winehq.org/attachment.cgi?id=59586
disk size windows
Dual Xeon E5-2630v4 (!!)
Ubuntu 17.04 Server Kernel 4.10.0-37 Wine 2.0.3
WINEARCH=win64 WINEPREFIX=/home/christoph/.wine64
christoph@:/$ df -h
Filesystem Size Used Avail Use% Mounted on
udev 126G 0 126G 0% /dev
tmpfs 26G 11M 26G 1% /run
/dev/sda2 450G 166G 262G 39% /
tmpfs 126G 0 126G 0% /dev/shm
tmpfs 5.0M 0 5.0M 0% /run/lock
tmpfs 126G 0 126G 0% /sys/fs/cgroup
/dev/sda1 226M 58M 153M 28% /boot
The disk size in Wine is not correct (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=39150
Bug ID: 39150
Summary: Devil May Cry 3 SE Screen is too bright.
Product: Wine
Version: 1.7.49
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: SolisX007(a)yahoo.com
Distribution: ---
Hello Everyone,
Devil May Cry 3 SE Screen is too bright. It almost looks like a white out.
--
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=25390
Summary: wineconsole doesn't returns exit code of subprocess
Product: Wine
Version: 1.2
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: major
Priority: P2
Component: programs
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: cblp(a)cblp.su
wineconsole should exit with the code, that was returned by nested command.
Example 1.
$ wineconsole cmd
CMD Version 1.2
> thereisnosuchcommand
File not found
> echo %ERRORLEVEL%
9009
> exit
$ echo $?
0
Example 2.
$ wineconsole thereisnosuchcommand
wine: cannot find L"C:\\windows\\system32\\thereisnosuchcommand.exe"
wineconsole: Starting command "thereisnosuchcommand" failed.
The command is invalid.
$ echo $?
0
And always 0, regardless of subprocess.
--
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=43166
Bug ID: 43166
Summary: Skyrim on FreeBSD will only work a few seconds after
being in the world (after the menu)
Product: Wine
Version: 2.7
Hardware: x86-64
OS: FreeBSD
Status: UNCONFIRMED
Severity: minor
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: adrien_fernandes2(a)hotmail.com
Created attachment 58421
--> https://bugs.winehq.org/attachment.cgi?id=58421
Output of the terminal at the exact moment when the problem occurs
Everything is working fine until I load a saved game to continue my old
character from FreeBSD.
It will work the same way as on GNU/Linux for just a few seconds then will
freeze while the led of my hard drive disk will stay lit as to say my hard
drive disk is working a lot. After a few seconds, the game will close, the hard
drive disk led will turn off and I'll be back to my desktop.
I added the
--
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=40718
Bug ID: 40718
Summary: Error in `C:\Program Files\Statgraphics\Statgraphics
Centurion XVII.I\CrashSender1402.exe': double free or
corruption (!prev): 0x7d30f2f8
Product: Wine
Version: 1.9.11
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: jibanes(a)gmail.com
Distribution: ---
Created attachment 54616
--> https://bugs.winehq.org/attachment.cgi?id=54616
screenshot
Bug present on Wine Staging 1.9.11 and Wine Devel 1.9.11.
Application: Statgraphics Centurion (30 days free trial available) 17.1.12
(32-bit).
Steps to reproduce:
File->Open->Open StatFolio->acceptance chart.sgp
--
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=44408
Bug ID: 44408
Summary: Tetris for Windows has wrong colors for the game
pieces and the score box
Product: Wine
Version: 3.0
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: mikeonthecomputer(a)gmail.com
Distribution: ---
Created attachment 60331
--> https://bugs.winehq.org/attachment.cgi?id=60331
Tetris with wrong colors
This game is the 16-bit EXE from the Windows Entertainment Pack, dated 1991.
While playing, the pieces look like they might have inverted colors, very
distracting.
Wine 3.0 is exhibiting this issue while Wine 2.0 played the game correctly.
Both cases, running on 64-bit Arch Linux with a 64-bit wine prefix.
--
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=36778
Bug ID: 36778
Summary: Webbrowser can't show local images (urls)
Product: Wine
Version: 1.7.20
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: minor
Priority: P2
Component: urlmon
Assignee: wine-bugs(a)winehq.org
Reporter: ocean04(a)suomi24.fi
Created attachment 48844
--> http://bugs.winehq.org/attachment.cgi?id=48844
Sample + source
Attached sample code is used to show html previews
Extract zip to c:/ (.wine/drive_c/) Run imagepreview.exe and click button.
It should show test.jpg, but instead broken image icon.
Sample works if replace "file:///c:/test.jpg" with some http url.
Workaround winetricks ie8
--
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=43604
Bug ID: 43604
Summary: FreeBSD → GL_INVALID_VALUE error generated. Program
handle does not refer to an object generated by
OpenGL.
Product: Wine
Version: 2.15
Hardware: x86
OS: FreeBSD
Status: UNCONFIRMED
Severity: minor
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: adrien_fernandes2(a)hotmail.com
Created attachment 59019
--> https://bugs.winehq.org/attachment.cgi?id=59019
General output
FreeBSD/i386 11.1
Wine staging 2.15 (CSMT enabled)
GTX 765m (nvidia-driver-375.66)
Set to Windows XP
I installed Steam then Hitman Blood Money and when I want to play it, I arrive
correctly to the main menu (the main menu is using the game engine, it's not a
video), I can start a new game, the videos are working, preparing the mission
too THEN when the loading screen appears, most of time, it will be black. It
will load but I won't see the people to kill nor the loading red bar.
In the game, I'll see nothing but the HUD, I can move, the sound is working,
the game is working correctly but I'll see nothing from the game, black screen
but the HUD.
Generally, when you go in front of a camera, on the right of the screen, you
will see what the camera sees. This, even is the game is black, I will
correctly see what the camera is seeing, I'll see my Hitman moving but on the
rest of the game, it is still black. The camera is in real-time, it's not a
video, it uses the game engine to display what the camera sees.
I built Wine by myself, I didn't apply any patch at all.
I tried without CSMT, it's exactly the same.
The output of my terminal is huge so I cut repeating parts to show you what it
says.
--
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=37625
Bug ID: 37625
Summary: Fallout: New Vegas fails to allocate system memory
Product: Wine
Version: 1.7.31
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: oinabilac(a)gmail.com
Distribution: ---
Fallout: New Vegas fails to allocate enough system memory when running on
high/ultra graphics settings. The game does not crash but the game is not
rendered properly; the interface disappears and certain textures are not
visible.
Wine repeatedly gives the following messages:
err:d3d:resource_init Failed to allocate system memory.
This issue can be fixed by setting the large address aware flag enabled (works
for Fallout 3 which has the same issue and runs the same game engine), but for
some reason New Vegas will not start if this is done. This is also true under
Windows and people have made workarounds to this and created mods which solve
the issue. For an example the following:
http://www.nexusmods.com/newvegas/mods/35262/?
This mod does not work under Wine, when you attempt to apply this patch by
running fnv4gb.exe you get the following error:
err:module:attach_process_dlls "XINPUT1_3.dll" failed to initialize, aborting
err:module:LdrInitializeThunk Main exe initialization for L"C:\\Program Files
(x86)\\Steam\\steamapps\\common\\Fallout New Vegas\\FalloutNV.4gb" failed,
status c00000fd
As described previously, Fallout 3 has the exact same issue and by setting the
large address aware flag the game functions flawlessly. The same would probably
be true if the flag could be set for Fallout: New Vegas.
--
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=39971
Bug ID: 39971
Summary: Vbscript works very slow on wine
Product: Wine
Version: 1.9.0
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: vbscript
Assignee: wine-bugs(a)winehq.org
Reporter: outdoor-online(a)i.ua
Distribution: ---
Created attachment 53407
--> https://bugs.winehq.org/attachment.cgi?id=53407
Vbscript with config and input file. Logs in Win and Ubuntu
I have installed Wine (v.1.7) on Ubuntu (v. 12.04) to run the vbscript. Libre
Office was also installed via Wine (required for vbscript). The script converts
.xls or .xlsx (input file) to .csv (output file). The problem is the following:
for the first time after installation script is running for 15 minutes (this is
longer than in Win, but it is acceptable). All subsequent times the script is
running for 1.5 hours. According to the logs, you can see that the script
processes each subsequent string in xls|xlsx longer than the previous one.
(like the loss of productivity in processing xls|xlsx)
--
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=42585
Bug ID: 42585
Summary: Final Fantasy V Corrupt Fonts
Product: Wine
Version: 2.3
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 57509
--> https://bugs.winehq.org/attachment.cgi?id=57509
backtrace-finalfantasyv
Final Fantasy V show corrupted fonts with wine 2.3 and before versions
Added too backtrace
--
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=25166
Summary: Multiple mime type handling registered for different
file extensions
Product: Wine
Version: 1.3.6
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: quentin.denis(a)gmail.com
Created an attachment (id=31923)
--> (http://bugs.winehq.org/attachment.cgi?id=31923)
screenshot illustrating the issue
The title might be confusing, but to be more precise, for file extensions
associated to Office Application (and even others) I get multiple "open with"
proposals, all referring to the same Office component (screenshot illustrates).
The issue seems to lie in the way wine registers the file mime-types. For a
.ppt file, i.e., I should get only one "PowerPoint" entry in my open with
dialog.
--
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.
http://bugs.winehq.org/show_bug.cgi?id=21368
Summary: TeamViewer: Some tooltips are shown incorrectly
Product: Wine
Version: 1.1.36
Platform: x86
URL: http://www.teamviewer.com
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: caliga(a)arcor.de
Created an attachment (id=25730)
--> (http://bugs.winehq.org/attachment.cgi?id=25730)
screenshot of incorrectly rendered tooltip
Some of the tooltips in TeamViewer are rendered incorrectly.
For example the tooltips in the toolbar when you do a remote support session.
There are also tooltips in the options dialog, but those work.
I get the impression that the width and height of the tooltips are switched.
Attached is a screenshot of a tooltip.
--
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.
http://bugs.winehq.org/show_bug.cgi?id=33678
Bug #: 33678
Summary: PSX2PSP Version 1.4.2 crashes with an unhandled page
fault while writing out a file
Product: Wine
Version: 1.5.31
Platform: x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: hibbsncc1701(a)yahoo.com
Classification: Unclassified
Regression SHA1: 4adfb787f4e8c36a37ce1d53a7e6df16d03ecd8a
Created attachment 44582
--> http://bugs.winehq.org/attachment.cgi?id=44582
Console log of crash in PSX2PSP
After writing the EBOOT file the program crashes with an unhandled page fault.
(i.e when it's progress reaches 100%. It does not matter what game is used to
create the file, nor does it matter what modifications are made.)
I ran a regression test and git identified
4adfb787f4e8c36a37ce1d53a7e6df16d03ecd8a as the bad patch.
I've attached the console log from the crash. I'll attach the git regresssion
info, with the next comment.
--
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=42806
Bug ID: 42806
Summary: I got this core dump playing hearthstone
Product: Wine-staging
Version: 2.4
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: sylvain.meunier(a)gmail.com
CC: erich.e.hoover(a)wine-staging.com, michael(a)fds-team.de,
sebastian(a)fds-team.de
Distribution: ---
Created attachment 57836
--> https://bugs.winehq.org/attachment.cgi?id=57836
core dump
I hope this can help you. This is the first time I get a core dump when
Hearthstone crashes (it happens a lot).
--
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=42379
Bug ID: 42379
Summary: Sleeping Dogs needs d3d11:wined3d_usage_from_d3d11
bind flags 0x80.
Product: Wine
Version: 2.0
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: enhancement
Priority: P2
Component: directx-d3dx11
Assignee: wine-bugs(a)winehq.org
Reporter: winetest(a)luukku.com
Distribution: ---
I just tried to run Sleeping dogs with wine-staging 2.0 and I got bored of
waiting it to load with white screen. I don't know if it would eventually. But
the console is spamming some messages alot, this is one of them. I have no idea
what it means.
This code needs some enchanment.
400 DWORD wined3d_usage_from_d3d11(UINT bind_flags, enum D3D11_USAGE usage)
401 {
402 static const DWORD handled = D3D11_BIND_SHADER_RESOURCE
403 | D3D11_BIND_RENDER_TARGET
404 | D3D11_BIND_DEPTH_STENCIL;
405 DWORD wined3d_usage = 0;
406
407 if (bind_flags & D3D11_BIND_SHADER_RESOURCE)
408 wined3d_usage |= WINED3DUSAGE_TEXTURE;
409 if (bind_flags & D3D11_BIND_RENDER_TARGET)
410 wined3d_usage |= WINED3DUSAGE_RENDERTARGET;
411 if (bind_flags & D3D11_BIND_DEPTH_STENCIL)
412 wined3d_usage |= WINED3DUSAGE_DEPTHSTENCIL;
413 if (bind_flags & ~handled)
414 FIXME("Unhandled bind flags %#x.\n", bind_flags & ~handled);
415
This doesnt look really fatal message so I am just setting severity to
enchament.
--
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=38447
Bug ID: 38447
Summary: valgrind shows an invalid read in
ole32/tests/hglobalstream.c
Product: Wine
Version: 1.7.18
Hardware: x86
OS: Linux
Status: NEW
Keywords: download, source, testcase, valgrind
Severity: normal
Priority: P2
Component: ole32
Assignee: wine-bugs(a)winehq.org
Reporter: austinenglish(a)gmail.com
Distribution: ---
==13974== Invalid read of size 2
==13974== at 0x7B843008: GlobalLock (heap.c:441)
==13974== by 0x4A9B5D8: HGLOBALStreamImpl_Read (hglobalstream.c:169)
==13974== by 0x48885CC: IStream_Read (objidl.h:4381)
==13974== by 0x48885CC: test_freed_hglobal (???:0)
==13974== by 0x488885C: func_hglobalstream (hglobalstream.c:522)
==13974== by 0x48D5D00: run_test (test.h:584)
==13974== by 0x48D613A: main (test.h:666)
==13974== Address 0x7f02aaf8 is 16 bytes after a block of size 32 free'd
==13974== at 0x7BC49E5B: notify_free (heap.c:262)
==13974== by 0x7BC4E178: RtlFreeHeap (heap.c:1761)
==13974== by 0x4A9B51A: HGLOBALStreamImpl_Release (hglobalstream.c:123)
==13974== by 0x4888325: IStream_Release (objidl.h:4377)
==13974== by 0x4888325: test_copyto (???:0)
==13974== by 0x4888857: func_hglobalstream (hglobalstream.c:521)
==13974== by 0x48D5D00: run_test (test.h:584)
==13974== by 0x48D613A: main (test.h:666)
==13974==
--
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=27437
Summary: IW2 Edge of Chaos freezes every second
Product: Wine
Version: unspecified
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: quartz
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: adys.wh(a)gmail.com
Originally in bug 24239.
fixme:quartz:ACMWrapper_SetMediaType acmStreamOpen returned 512
spams every second or so. When it does, the game freezes completely for a few
milliseconds.
winetricks devenum quartz works around it.
--
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.
http://bugs.winehq.org/show_bug.cgi?id=17039
Summary: Wine does not appear to read disc IDs (DVDs)
Product: Wine
Version: 1.1.13
Platform: PC-x86-64
URL: http://www.invelos.com/Downloads.aspx
OS/Version: Linux
Status: UNCONFIRMED
Severity: enhancement
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: Stuart(a)houseofanime.org
For app DVD Profiler
(http://appdb.winehq.org/objectManager.php?sClass=version&iId=14707), Wine
seems to fail to read DVD disc IDs correctly.
I believe that this relates to this functionality, but I'm not sure:
http://msdn.microsoft.com/en-us/library/ms785496.aspx
DVD Profiler stores information on DVDs, including several areas of
functionality that make use of the unique disc IDs.
Under Windows, inserting a DVD into your drive triggers the application read
the disc ID and either move focus to that disc (if it is in your collection) or
prompt to download it from the online database (if it is not). This check can
also be triggered from the menu 'DVD, scan DVD-ROM drive'.
The on-line database is user-populated, and disc IDs are entered by editing a
profile and selecting 'set disc ID' under the 'discs' section.
As a demonstration, I chose a USA DVD title: 'Time Bokan'.
Under Windows, if I set the disc ID as described above, I get this string:
"76797847B89AE080 [TimeBokan]". When I insert the DVD in the drive, the correct
profile gains focus or I am prompted to download the profile (depending on
whether I have DVD in my collection or not).
Under Wine, if I set the disc ID as described above, I get this string: "-
[TimeBokan]". Inserting the DVD into the drive triggers no action (probably
because of bug 17037). However, I can force the application to check the
DVD-ROM by choosing 'DVD, scan DVD-ROM drive' from the menu. When I do so, the
application prompts me to download a DVD called "The Wedding Party", which is
defined by the string "43D62B0BAEE070B7 [THE_WEDDING_PARTY]". This profile is
returned consistently, and the application will give focus to this profile once
it is in my collection should I repeat the process.
In summary, Wine is returning an incorrect Disc ID for DVDs.
--
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=37802
Bug ID: 37802
Summary: Unhandled exception when starting Theme Park World
Product: Wine
Version: 1.7.33
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: hededrk(a)gmail.com
Distribution: ---
Created attachment 50348
--> https://bugs.winehq.org/attachment.cgi?id=50348
Crash report
I followed the instructions on the appdb page. Game doesn't launch, and either
requests to insert CD, or crashes with unhandled exception.
--
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=10603
Summary: IDirectSoundBufferImpl_SetFX should be implemented
Product: Wine
Version: 0.9.49.
Platform: Other
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-directx-dsound
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: pawel.stolowski(a)wp.pl
IDirectSoundBufferImpl_SetFX should be implemented - this is probably the only
problem left to have two games working correctly (both from the same company
and using same engine): "Dangerous Waters" and "Sub Command" - now they lack
sound effects - see my test results:
http://appdb.winehq.org/objectManager.php?sClass=version&iId=9913http://appdb.winehq.org/objectManager.php?sClass=version&iId=9914
These are the "fixme" messages printed for "Dangerous Waters":
fixme:dsound:IDirectSoundBufferImpl_SetFX (0xe96248,9,0x309d89c,0x34f39c): stub
fixme:dsound:IDirectSoundBufferImpl_SetFX (0xe96248,0,(nil),(nil)): stub
fixme:dsound:IDirectSoundBufferImpl_SetFX (0xe96248,0,(nil),(nil)): stub
fixme:dsound:IDirectSoundBufferImpl_SetFX (0x1112ae8,0,(nil),(nil)): stub
fixme:dsound:IDirectSoundBufferImpl_SetFX (0x1173b50,0,(nil),(nil)): 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=45433
Bug ID: 45433
Summary: dark souls 3: cannot change resolution in fullscreen
mode
Product: Wine
Version: 3.11
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: general(a)sarifria.x10.bz
Distribution: ---
when making a fresh graphics config file (let's say i perhaps deleted it, or
it's a fresh install) it will default to 1920x1080. upon a second boot, the
game will now switch to 800x600 resolution. in both cases, any attempts to
alter the resolution will fail, it does not even attempt to change it. windowed
mode works fine, however when you subsequently switch back to fullscreen it
will change back to 800x600 (even at 1920x1080). attached is a log where i
attempt to change in fullscreen, change in windowed mode, then attempt to
retain that resolution by switching back to fullscreen.
--
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.