http://bugs.winehq.org/show_bug.cgi?id=18245
Summary: Polygon Love 2 - model shows up but doesn't have any
animation
Product: Wine
Version: 1.1.20
Platform: PC
OS/Version: Windows XP
Status: UNCONFIRMED
Severity: minor
Priority: P2
Component: directx-d3d
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: knight666(a)gmail.com
Created an attachment (id=20756)
--> (…
[View More]http://bugs.winehq.org/attachment.cgi?id=20756)
A screenshot of the model standing with her arms wide
First off, launching Polygon Love 2 from the command line is impossible, it
crashes with the following output:
knight666@Katja:~$ wine "/media/disk/Program Files/Purple Heart/Polygon Love
2/PL2.exe"
fixme:d3d:IWineD3DImpl_FillGLCaps OpenGL implementation supports 32 vertex
samplers and 32 total samplers
fixme:d3d:IWineD3DImpl_FillGLCaps Expected vertex samplers + MAX_TEXTURES(=8) >
combined_samplers
fixme:win:EnumDisplayDevicesW ((null),0,0x32f830,0x00000000), stub!
fixme:d3d:WineD3D_ChoosePixelFormat Add OpenGL context recreation support to
SetDepthStencilSurface
It is possible to launch the game by double clicking the exe. Once loaded,
everything works as it's supposed to, but once you go in the dressing room,
your character doesn't display any animation, and just stands there with her
arms wide.
I've attached a screenshot demonstrating the effect.
Computer specs:
- Wine 1.1.20 (latest version at time of writing)
- Ubuntu 8.10
- 2.2 GHz AMD Athlon(tm) 64 X2 Dual Core Processor 4200+
- 1 GB RAM
- 128 MB (I think) nVidia Corporation GeForce 8600 GT
--
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.
[View Less]
http://bugs.winehq.org/show_bug.cgi?id=18292
Summary: Make 8.3 names for LFNs more "Windows-like"
Product: Wine
Version: 1.1.20
Platform: PC
URL: http://source.winehq.org/source/dlls/kernel32/path.c
OS/Version: Linux
Status: UNCONFIRMED
Severity: enhancement
Priority: P2
Component: kernel32
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: kennybobs(a)o2.co.uk
When Windows …
[View More]creates 8.3 names for long file names, it does so in the form
Progra~1 and increments the number by one with each new creation of a similar
filename.
So,
Program Files --> Progra~1
Programmers --> Progra~2
Program Blah blah --> Progra~3
and so on.
Under Wine, the 8.3 filenames seem somewhat random (PROG~HAE for example).
Is it possible to implement this behaviour?
It would make it easier to guess short path names, which makes it easier to add
paths to the registry (when needed for workarounds, for example).
--
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.
[View Less]
http://bugs.winehq.org/show_bug.cgi?id=16703
Summary: Wineconsole: Fallback from curses to window based
backend
Product: Wine
Version: CVS/GIT
Platform: All
OS/Version: All
Status: UNCONFIRMED
Severity: enhancement
Priority: P2
Component: programs
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: wine(a)martin.st
Created an attachment (id=18362)
--> (http://bugs.…
[View More]winehq.org/attachment.cgi?id=18362)
Patch for fixing the curses->user backend fallback
Wineconsole currently falls back to a curses based terminal if the user has
specified the other one and it is unable to create windows. However, the
converse fallback doesn't work in all cases. If the curses backend fails by
being unable to load the curses library, wineconsole doesn't try the window
based backend.
The attached patch solves this issue.
--
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.
[View Less]
http://bugs.winehq.org/show_bug.cgi?id=12808
Summary: indexed bitmaps support is broken
Product: Wine
Version: unspecified
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: minor
Priority: P2
Component: gdi32
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: misha-cn-ua(a)ya.ru
This bug occurs in every application, written using AlphaControls from
http://www.alphaskins.com…
[View More]The problem: skins in that controls usually consist of indexed 8-bit bitmaps,
which at runtime are converted to 24-bit, splitted into parts and used to draw
controls. Under Wine such conversion results to messed up display, the
program's interface is very poor.
A workaround is to manually convert skin bitmaps to 24-bit, then program work
almost normally, however there some other glitches (track bars).
The easiest way to show the bug is to run AlphaControls demo application under
Wine. That demo can be freely downloaded from this page:
http://www.alphaskins.com/ademos.php
--
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.
[View Less]
http://bugs.winehq.org/show_bug.cgi?id=16704
Summary: wineconsole: Allow specifying the console backend to use
when wineconsole is launched implicitly
Product: Wine
Version: CVS/GIT
Platform: All
OS/Version: All
Status: UNCONFIRMED
Severity: enhancement
Priority: P2
Component: programs
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: wine(a)martin.st
Created an …
[View More]attachment (id=18363)
--> (http://bugs.winehq.org/attachment.cgi?id=18363)
Proposed patch for fixing the issue
When wineconsole is launched implicitly, when an application in wine opens a
console, it currently defaults to using the user backend of wineconsole,
without any possibility of changing which backend to use.
The console application to launch can be changed using the WINECONSOLE
environment variable, and wine appends --use-event=xx to that command line when
launching the console program. Setting WINECONSOLE to "wineconsole
--backend=curses" is ignored, since wineconsole chooses the user backend as
soon as the --use-event argument is parsed. This isn't necessary, since the
user backend is the default one. By removing the explicit setting of the user
backend when parsing the --use-event argument, choosing another backend through
the WINECONSOLE environment variable works as expected.
The attached patch implements this proposed change.
--
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.
[View Less]
http://bugs.winehq.org/show_bug.cgi?id=18829
Summary: K-Meleon 1.5.x : Crash sometimes during browsing
Product: Wine
Version: 1.1.23
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: jujuland.46(a)wanadoo.fr
--------------------------------------------------------------------------------
K-…
[View More]Meleon Version : 1.52
K-Meleon profile : in program folder (set during setup)
K-Meleon Extensions : none
K-Meleon kplugins : standard
Netscape plugins : none
Wine version : 1.1.23
Ubuntu : 8.10
kernel : 2.6.27-14-generic
Program Launch : ./K-M_152.sh
--------------------------------------------------------------------------------
shell (K-M_152.sh) used with a console to launch K-Meleon and to keep log
cd "/opt/Program Files/K-Meleon152"
./k-meleon.exe
--------------------------------------------------------------------------------
Crash sometimes during browsing:
---------------------------------------------------------------------------------------------
--
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.
[View Less]
http://bugs.winehq.org/show_bug.cgi?id=15915
Summary: cinepak codec reportedly not installed, FourCC case
mismatch
Product: Wine
Version: 1.1.7
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: msvfw32
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: hoehle(a)users.sourceforge.net
CC: dmitry(a)codeweavers.com
…
[View More]The Alien Nations / Die Völker complains that the cinepak codec is not
installed.
The reason is a lower/upper case mismatch in a FourCC code.
Upper-case FourCC is being supplied, as the log reveals:
Call msvfw32.ICOpen(43444956,44495643,00000002) ret=00493baf
trace:msvideo:ICOpen (VIDC,CVID,0x00000002)
Call winmm.OpenDriver(0032fda8 L"VIDC.CVID", ...)
trace:driver:OpenDriver (L"VIDC.CVID", L"drivers32", ...);
But dlls/iccvid/iccvid.c implements the check
if (icinfo && icinfo->fccType != ICTYPE_VIDEO)
where ICTYPE_VIDEO refers to 'vidc', not VIDC.
The same check is in msvidc32/msvideo1.c and msrle32/msrle32.c
Probably a case-insensitive check is required? For instance,
msvfw32/msvideo_main.c:ICOpen() uses the case-insensitive helper
function compare_fourcc().
OTOH, after the case-insensitive check perhaps wine should fill in the
icopen.fccType and .fccHandler slots with the FourCC case it expects
(ICTYPE_VIDEO) rather than the argument it received? It seems reasonable to
commit to a known character case early on in the code and use that
consistently.
What is The Right Thing (TRT), i.e. what to store in fccType?
In any case, a case fix lets "Die Völker" work past this issue (and crash
later in ddraw, but that's another issue).
--
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.
[View Less]
http://bugs.winehq.org/show_bug.cgi?id=18325
Summary: Timed events bug in Call of Cthulhu
Product: Wine
Version: 1.1.20
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: monolitonegro(a)gmail.com
There's a bug in the game Call of Cthulhu: Dark Corners of Earth that make some
timed events …
[View More]executate too early in the game, making the game near unplayable,
or downright unplayable.
The earliest noticiable example is the beginning of the Chapter 2:"Attack of
the fishmen". At the beginning of this chapter, the player must avoid an angry
mob of citizens running from room to room before the enemies manage to break in
the bolted doors. While in the Windows XP the game allows plenty of time for
the player to think and act, the linux with wine allows barely enough, making
the game nearly unplayable.
Another point where this bug is noticeable is at the chapter 5, Marsh Refinery.
At midway chapter, the player must outrun a shoggot while closing doors behind
him. While this is perfectly possible in the Windows XP, it is absolutely
impossible in the linux.
Tested with: wine version 1.1.20 binaries from official repository under
GNU/Linux Ubuntu Hardy 8.04 and Windows XP SP2.
Aplication: Call of Cthulhu: Dark Corners of Earth version 1.0
Command line: wine "C:\Arquivos de programas\Bethesda Softworks\ Call of
Cthulhu DCoTE\Engine\CoCMainWin32.exe"
How to reproduce: In a dual boot machine with both Windows XP SP2 and GNU/Linux
Hardy 8.04, install the game twice, one time in each OS. Play the game up to
the beginning of the chapter 2 in the easiest dificulty(Scout Boy). At the
beginning of chapter 2, take a wristwatch, measure the time it takes for the
enemies to break in in each of the four rooms. Compare the results from both
OS.
If that's not enough, play up until midway chapter 5(if you can), compare the
time it takes for the shoggot to outrun the player in both OS.
This video shows what the player is supposed to do in chapter 5. The event
begins at 7:10 onwards:
http://www.youtube.com/watch?v=qBFR1_qnrog
--
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.
[View Less]
http://bugs.winehq.org/show_bug.cgi?id=14094
Summary: Guild Wars crashes after patch screen with pbuffer
Product: Wine
Version: 1.0.0
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: major
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: nicodarious(a)gmail.com
OK, so I am very new to this, but I am really hoping that I might be able to
throw …
[View More]in a little help.
I have been playing around with regedit and changing little things here and
there, each time testing Guild Wars out after running wineprefixcreate.
One things that I have noticed is that Guild Wars WILL run (at about 5 - 25
FPS) with the OffScreenRenderingMode set to fb0, but will crash out if set to
pbuffer. Is there any reason for this?
Also, I ran Gw.exe from prompt to get output for the reasoning for the crash,
and this is what I get (the last few lines that is):
err:d3d:getColorBits Unsupported format: WINED3DFMT_R32F
err:d3d:IWineD3DImpl_IsPixelFormatCompatibleWithRenderFmt Unable to check
compatibility for Format=WINED3DFMT_R32F
fixme:d3d:IWineD3DResourceImpl_SetPriority (0x352a0b0) : stub
fixme:d3d:IWineD3DResourceImpl_SetPriority (0x352a5a8) : stub
fixme:d3d:IWineD3DResourceImpl_SetPriority (0x352abc0) : stub
fixme:d3d:FindContext The PBuffr context is only supported for one thread for
now!
err:d3d:ActivateContext Failed to activate the new context
err:seh:raise_exception Exception frame is not in stack limits => unable to
dispatch exception.
I also have my registry settings exported for anyone wanting to browse through
them. If you have any info or questions, please let me know and I will do my
best to gather the info for you.
--
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.
[View Less]
http://bugs.winehq.org/show_bug.cgi?id=19209
Summary: ddraw: visual tests fail with pbuffer
Product: Wine
Version: 1.1.25
Platform: PC
OS/Version: Linux
Status: NEW
Keywords: download, testcase
Severity: minor
Priority: P2
Component: directx-d3d
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: austinenglish(a)gmail.com
visual.c:795: Test failed: DSTALPHA on texture returned …
[View More]color 0x000000ff,
expected 0x00800080
--
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.
[View Less]
http://bugs.winehq.org/show_bug.cgi?id=15355
Summary: REFPROP fails to calculate any values
Product: Wine
Version: 1.0.0
Platform: Other
OS/Version: other
Status: UNCONFIRMED
Severity: major
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: john(a)curioussymbols.com
See rest of description in AppDB.
Actually calculating the values fails, can't manage to …
[View More]do anything useful with
it. I get a dialog saying "Runtime error '450': Wrong number of arguments or
invalid property assignment", and the following commandline output on Ubuntu
Hardy with Wine 1.0.0-1ubuntu4~hardy1.
<br />
<br />ohn@roadwork:~/.wine/drive_c/Program Files/REFPROP$ wine REFPROP.EXE
<br />fixme:ole:OleLoadPictureEx
(0xbf2674,774,0,{7bf80980-bf32-101a-8bbb-00aa00300cab},x=0,y=0,f=0,0x32fae8),
partially implemented.
<br />fixme:ole:OLEPictureImpl_SaveAsFile (0x100aab8)->(0xe55788, 0, (nil)),
hacked stub.
<br />fixme:ole:OleLoadPictureEx
(0xbfac6c,774,0,{7bf80980-bf32-101a-8bbb-00aa00300cab},x=0,y=0,f=0,0x32f778),
partially implemented.
<br />fixme:ole:OleLoadPictureEx
(0xbfac6c,2200,1,{7bf80980-bf32-101a-8bbb-00aa00300cab},x=0,y=0,f=0,0x32f718),
partially implemented.
<br />fixme:ole:OLEPictureImpl_SaveAsFile (0x10114b8)->(0x1013908, 0, (nil)),
hacked stub.
<br />fixme:ole:OleLoadPictureEx
(0xc1ca24,774,0,{7bf80980-bf32-101a-8bbb-00aa00300cab},x=0,y=0,f=0,0x32f05c),
partially implemented.
<br />fixme:ole:OLEPictureImpl_SaveAsFile (0x17150c0)->(0x1718f00, 0, (nil)),
hacked stub.
<br />fixme:ole:OLEPictureImpl_FindConnectionPoint no connection point for
{33ad4ed2-6699-11cf-b70c-00aa0060d393}
<br />fixme:ole:OLEPictureImpl_FindConnectionPoint no connection point for
{33ad4ed2-6699-11cf-b70c-00aa0060d393}
<br />fixme:ole:OLEPictureImpl_FindConnectionPoint no connection point for
{33ad4ed2-6699-11cf-b70c-00aa0060d393}
<br />
<br />'
to
--
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.
[View Less]
http://bugs.winehq.org/show_bug.cgi?id=12275
Summary: Democracy crashes in wined3d
Product: Wine
Version: CVS/GIT
Platform: PC
URL: http://www.positech.co.uk/democracy/DemocracyDemo.exe
OS/Version: Linux
Status: NEW
Keywords: download
Severity: enhancement
Priority: P2
Component: directx-d3d
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: xerox_xerox2000(a)yahoo.…
[View More]co.uk
Hi, a user submitted this as new app into appdb with garbage results. It
crashes in wined3d. I'll attach a log
--
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.
[View Less]
http://bugs.winehq.org/show_bug.cgi?id=17185
Summary: Quicktime 7.1.6 buffer overrun on exit
Product: Wine
Version: 1.1.13
Platform: Other
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: rylleman(a)gmail.com
Created an attachment (id=19074)
--> (http://bugs.winehq.org/attachment.cgi?id=19074)
…
[View More]Quicktime 7.1.6 Buffer overrun error-message.
When closing Quicktime player it crashes with an error message (attached)
saying "Buffer overrun detected!"
Other open instances of Quicktime crashes along with the first one.
Happens every time I close a Quicktime player.
Using Quicktime 7.1.6 since that seems to be the most stable version with Wine.
Ubuntu Studio 8.10, 64-bit.
--
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.
[View Less]
http://bugs.winehq.org/show_bug.cgi?id=16742
Summary: ntdll/directory.c: passing argument from incompatible
pointer type
Product: Wine
Version: 1.1.12
Platform: Macintosh
OS/Version: Linux
Status: NEW
Keywords: source
Severity: minor
Priority: P2
Component: build-env
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: austinenglish(a)gmail.com
gcc -c -I. -I. -I.…
[View More]./../include -I../../include -D__WINESRC__ -D_NTSYSTEM_
-D_REENTRANT -fPIC -Wall -pipe -fno-strict-aliasing
-Wdeclaration-after-statement -Wwrite-strings -Wtype-limits -Wpointer-arith -g
-O2 -o directory.o directory.c
directory.c: In function ‘wine_getdirentries’:
directory.c:1289: warning: passing argument 4 of ‘getdirentries’ from
incompatible pointer type
--
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.
[View Less]
http://bugs.winehq.org/show_bug.cgi?id=13124
Summary: Graphical glitches in cursor for Diner Dash Hometown
Hero
Product: Wine
Version: 1.0-rc1
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: getaceres(a)gmail.com
Trying to play Diner Dash Hometown Hero (free demo at
…
[View More]http://www.bigfishgames.com/download-games/2347/diner-dash-hometown-hero/in…)
I get black squares around the cursor that makes the cursor and the image below
it dissapear, making the game unplayable.
In the console I get a lot of messages sayin:
fixme:d3d_surface:IWineD3DSurfaceImpl_BltOverride Implement hardware blit
between two surfaces on the same swapchain
and
fixme:d3d_surface:surface_download_data Read back converted textures
unsupported, format=WINED3DFMT_X8R8G8B8
--
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.
[View Less]
http://bugs.winehq.org/show_bug.cgi?id=19434
Summary: ActiveState ActiveTcl installer fail to install due to
path write permission
Product: Wine
Version: 1.1.19
Platform: PC
URL: http://www.activestate.com/activetcl/downloads/
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
…
[View More]ReportedBy: max.bra(a)alice.it
Created an attachment (id=22562)
--> (http://bugs.winehq.org/attachment.cgi?id=22562)
standard winedebug stdout log
ActiveState ActiveTcl 8.xx installer fail to install due to path write
permission problem.
i see this behaviour since wine 1.1.19. same on 1.1.26.
any combination of 'c:\Tcl' or 'c:/directory/Tcl' does not solve.
does not matter if target directory exist or not.
--
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.
[View Less]
http://bugs.winehq.org/show_bug.cgi?id=17971
Summary: GCC optimisations cause workaround for Slingplayer bug
13371 to fail
Product: Wine
Version: 1.1.17
Platform: PC
URL: http://download.slingmedia.com/player/pc/SlingPlayer-
Setup-EU-1.5.1.343.exe
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: ole32
AssignedTo:…
[View More] wine-bugs(a)winehq.org
ReportedBy: kennybobs(a)o2.co.uk
The workaround for Bug 13371 is to use native qcap.dll and quartz.dll.
Up to Wine 1.1.16, the workarounds work fine. With 1.1.17 (and 1.1.18) the
workarounds fail (resulting in the same DLL Function Crash error).
While attempting a git bisect I found that the workaround still worked when
using "gcc -O0" to compile, but "gcc -O1" causes the workaround to fail.
Result of bisect with gcc -O1:
7b6dd2c9f8339a0bc14aa7f466f5c5a0bb03da06 is first bad commit
commit 7b6dd2c9f8339a0bc14aa7f466f5c5a0bb03da06
Author: Alexandre Julliard <julliard(a)winehq.org>
Date: Wed Mar 11 17:28:21 2009 +0100
ole32: Get rid of WINE_StringFromCLSID and A->W conversions.
:040000 040000 ccd95ffc3e797d4978e121994715610434851ca5
dac4595337bddbc841d737265254e1bc52ccea03 M dlls
Reverting to previous commit allows the workaround to work with optimisations
on.
This is kind of a blocker to Bug 13371 as the pre-compiled .debs from the
WineHQ repository uses -O2 optimisation.
To complete the bisect, I had to move from GCC 4.3.2-1ubuntu12 to GCC 4.3.3 I
compiled myself, as the results were random (GCC bug).
Tested in latest gitwine wine-1.1.18-199-ga9c0c24 and an unhandled exception
occurs with -O1, workaround works with -O0.
--
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.
[View Less]
http://bugs.winehq.org/show_bug.cgi?id=9544
Summary: Semi transparency in .ico files is ignored
Product: Wine
Version: 0.9.44.
Platform: Other
OS/Version: other
Status: UNCONFIRMED
Severity: enhancement
Priority: P2
Component: wine-gui
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: vexorian(a)gmail.com
Created an attachment (id=7917)
--> (http://bugs.winehq.org/attachment.cgi?id=…
[View More]7917)
The top is an application in Wine, the bottom is the same application in
windows XP.
Since windows XP, icons in .ico format support semi transparency. Certain
programs use icons with transparency in their forms, seems Wine does not render
this transparency correctly, some apps look akward:
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are watching all bug changes.
[View Less]
http://bugs.winehq.org/show_bug.cgi?id=19312
Summary: Can not close IE8
Product: Wine
Version: 1.1.25
Platform: PC
URL: http://download.microsoft.com/download/C/C/0/CC0BD555-
33DD-411E-936B-73AC6F95AE11/IE8-WindowsXP-x86-ENU.exe
OS/Version: Linux
Status: NEW
Keywords: download
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)…
[View More]winehq.org
ReportedBy: kennybobs(a)o2.co.uk
Tested on IE8 XP, haven't tried other OS yet.
Clicking on the X to close IE8 doesn't do anything, except print the following
lines in the console every time it is clicked:
err:ntdll:NtQueryInformationToken Unhandled Token Information class 18!
err:ntdll:NtQueryInformationToken Unhandled Token Information class 18!
fixme:storage:StorageImpl_Commit (0x3487188 4): stub
fixme:storage:StorageImpl_Commit (0x3487188 4): stub
fixme:storage:PropertyStorage_WritePropertyToStream unsupported type: 72
fixme:storage:PropertyStorage_WritePropertyToStream unsupported type: 72
fixme:storage:StorageImpl_Commit (0x3487188 4): stub
err:ntdll:NtQueryInformationToken Unhandled Token Information class 18!
fixme:ole:NdrCorrelationInitialize (0x14ed824, 0x14ed424, 1024, 0x0): stub
--
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.
[View Less]
http://bugs.winehq.org/show_bug.cgi?id=17520
Summary: mshtml/dom test times out if +heap enabled
Product: Wine
Version: 1.1.15
Platform: PC-x86-64
URL: http://test.winehq.org/data/86f79e3a558ca1fb5d596e9f6240
3ca89178d3cf/wine_xp_ae-ub-904-heap/mshtml:dom.html
OS/Version: Linux
Status: NEW
Keywords: download, source, testcase
Severity: enhancement
Priority: P2
…
[View More] Component: mshtml
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: austinenglish(a)gmail.com
No output, just times out.
--
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.
[View Less]
http://bugs.winehq.org/show_bug.cgi?id=14181
Summary: Mouse position in Steam is incorrect
Product: WineHQ Apps Database
Version: unspecified
Platform: Other
OS/Version: other
Status: UNCONFIRMED
Severity: major
Priority: P1
Component: appdb-unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: alex_vip_1(a)hotmail.com
The position of the mouse in the aplication "Steam" is incorrect. …
[View More]Well... Is
incorrect just in the menu that appears when right-clicking the trayicon. In
the rest of the program it's fine ^^.
So, resuming: To reproduce the error: right click on the Steam trayicon and
then try to click something ... You won't be able because the cursor is about
30pixes under the real position.
Screenshot: http://img117.imageshack.us/img117/2487/instantnea2dj9.jpg
--
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.
[View Less]
http://bugs.winehq.org/show_bug.cgi?id=12220
Summary: Joystick POV (hatswitch) doesn't work
Product: Wine
Version: 0.9.58.
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: major
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: bjdelta(a)infinito.it
This bug was already reported in the past and assumed solved with version
0.9.43 but it's still …
[View More]present. Joystick hatswitch is seen by wine as 2 axis and
not as a POV, despite any modification in the registry of windows (as suggested
here http://wiki.winehq.org/UsefulRegistryKeys ). The bug can be verified using
a little windows utility "joytester" (available for download here
http://www.softpedia.com/get/System/System-Miscellaneous/Joystick-Tester.sh…
) and therefore it's not related to a specific application. My joystick is
Microsoft SideWinder Precision 2 connected via USB and the POV is correctly
detected under linux (UBUNTU 7.10) and tested with "jscalibrator". This bug
prevents from using any kind of game under wine that needs the use of an
hatswitch, especially flight simulation programs.
--
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.
[View Less]
http://bugs.winehq.org/show_bug.cgi?id=16426
Summary: Rapid Uploader: Crash with file open dialog
Product: Wine
Version: 1.0.1
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: dean(a)bong.com.au
Program will crash in the following unlikely series of events
* In "Upload" tab, click "Add", …
[View More]go into a directory, select a file and click
"Open"
* Allow the file to upload
* via some means (via bash or nautilus or something), delete the folder that
you were previously in with the "Add" file select dialog box
* In "Upload" tab, click "Add"
* program crashes.
i dont know if this is a wine or program bug
--
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.
[View Less]
http://bugs.winehq.org/show_bug.cgi?id=17431
Summary: SPY_DumpMem shouldn't crash when given an invalid
pointer
Product: Wine
Version: 1.1.15
Platform: Other
URL: http://test.winehq.org/data/3fa05ae6a7c08f9534badfeffbe0
2db9e00ab47a/wine_xp_ae-ub810-all/comctl32:datetime.html
OS/Version: other
Status: UNCONFIRMED
Severity: enhancement
Priority: P2
…
[View More]Component: user32
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: madewokherd(a)gmail.com
The linked test was run by Austin English with WINEDEBUG=+all.
The line in the test that caused the crash was probably this one, or a similar
line:
http://source.winehq.org/git/wine.git/?a=blob;f=dlls/comctl32/tests/datetim…
The test is sending DTM_SETMCCOLOR, which has lParam as a COLORREF.
SPY_DumpStructure is checking for several LVM_ messages that have a pointer in
lParam. Apparently, DTM_SETMCCOLOR has the same value as one of those other
symbols, and our message spy code can't tell the difference.
I don't think we can avoid this situation, but it shouldn't crash. SPY_DumpMem
should be able to catch page faults.
--
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.
[View Less]
http://bugs.winehq.org/show_bug.cgi?id=16324
Summary: Darius Gaiden exits with message "CD-ROM music problem."
Product: Wine
Version: 1.1.9
Platform: Other
URL: http://appdb.winehq.org/objectManager.php?sClass=version
&iId=8744
OS/Version: other
Status: UNCONFIRMED
Severity: enhancement
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
…
[View More] ReportedBy: madewokherd(a)gmail.com
At random times, Darius Gaiden pops up a message saying 'CD-ROM music problem.
See "README.DOC"' and exits.
"fixme:ntdll:server_ioctl_file Unsupported ioctl 24004 (device=2 access=1
func=1 method=0)" appears once in the console. It may or may not be related.
--
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.
[View Less]