http://bugs.winehq.org/show_bug.cgi?id=4948
------- Additional Comments From xerox_xerox2000(a)yahoo.co.uk 2006-28-03 15:35 -------
looks like same issue as in bug 4847 then. Guess some more apps will suffer from
this one
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=4953
Summary: Revold locks up shortly after starting with
"setup_exception nested exception" error
Product: Wine
Version: 0.9.10.
Platform: PC-x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-directx
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: ben(a)atomnet.co.uk
The game starts but then locks up a few seconds later. It may get from the first
advert to the second but not usually. Output log attached.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=4913
ben(a)atomnet.co.uk changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|UNCONFIRMED |RESOLVED
Resolution| |INVALID
------- Additional Comments From ben(a)atomnet.co.uk 2006-28-03 14:40 -------
Seems the issue was my end, it stopped happening but I haven't changed my Wine
install, so it must have been something else to do with my machine. Icon Ed
works fine now and Revolt wants its CD :P
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=4949
tony.lambregts(a)gmail.com changed:
What |Removed |Added
----------------------------------------------------------------------------
URL| |http://armada2.filefront.com
| |/file/Star_Trek_Armada_II_De
| |mo;2859#Download
Keywords| |download
------- Additional Comments From tony.lambregts(a)gmail.com 2006-28-03 14:36 -------
I tested the DEMO on 2006-03-19 09:13 with CVS so if this truely is a regression
then it has existed since then and not since October.
Please test with the demo and see if it displays the same problems. if it does
then please do regresssion testing to find the patch that broke it. You can
use CVS or GIT to do the test as follows:
http://winehq.org/site/docs/winedev-guide/x1344http://wiki.winehq.org/GitWine
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=4952
Summary: joystick with POV and JoystickAImpl_SetProperty-
proprange
Product: Wine
Version: 0.9.10.
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-directx-dinput
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: semerad(a)sisal.ms.mff.cuni.cz
There is a bug in dlls/dinput/joystick_linux.c . POV doesn't work, when
application calls JoystickAImpl_SetProperty-proprange on POV. Function
calculate_pov doesn't expect that lMin and lMax can be changed. I know it is
strange to set proprange on POV, but at least Il-2 Sturmovik demo 2.0 is doing it.
I have solved it with following small patch, which ignores set proprange on POV
(it was easier than change constants in calculate_pov :-), but than get
proprange will not return previously set values if there would be application
which will call it.
Pavel Semerad
--- ./dlls/dinput/joystick_linux.c.pov 2006-03-15 15:50:31.000000000 +0100
+++ ./dlls/dinput/joystick_linux.c 2006-03-28 16:06:01.000000000 +0200
if (ph->dwHow == DIPH_DEVICE) {
TRACE("proprange(%ld,%ld) all\n",pr->lMin,pr->lMax);
for (i = 0; i < This->user_df->dwNumObjs; i++) {
+ if (i >= 8 && i <= 11) continue;
This->props[i].lMin = pr->lMin;
This->props[i].lMax = pr->lMax;
}
@@ -1156,6 +1157,7 @@ static HRESULT WINAPI JoystickAImpl_SetP
int obj = find_property(This, ph);
TRACE("proprange(%ld,%ld) obj=%d\n",pr->lMin,pr->lMax,obj);
if (obj >= 0) {
+ if (obj >= 8 && obj <= 11) return DI_OK;
This->props[obj].lMin = pr->lMin;
This->props[obj].lMax = pr->lMax;
return DI_OK;
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.