http://bugs.winehq.org/show_bug.cgi?id=6495
Vitaliy Margolen <vitaliy(a)kievinfo.com> changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|CLOSED |REOPENED
Resolution|ABANDONED |
--- Comment #25 from Vitaliy Margolen <vitaliy(a)kievinfo.com> 2009-09-11 22:02:07 ---
Ok, reopening.
--
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=20019
Summary: winecfg kills audio streams in ubuntu
Product: Wine
Version: 1.1.29
Platform: PC-x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: major
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: elmano(a)gmx.at
winecfg kills active audiostreams in ubuntu. this means that you have (at best)
to stop playback and restart it or (at worst) having to restart the media app
and having to reselect the playlist/track/whatever. In both cases there is
quite some annoyance involved.
--
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=6495
--- Comment #24 from Munchkinguy <munchkinguy(a)hotmail.com> 2009-09-11 21:26:37 ---
Using Wine 1.1.29, I start the program and recieve the following error message:
"Wave Out Error
The wave header was not prepared. Please use the Prepare function to prepare
the header, and then try again."
Could someone please reopen this 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.
http://bugs.winehq.org/show_bug.cgi?id=6495
Munchkinguy <munchkinguy(a)hotmail.com> changed:
What |Removed |Added
----------------------------------------------------------------------------
CC| |austinenglish(a)gmail.com
--
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=6495
--- Comment #23 from Munchkinguy <munchkinguy(a)hotmail.com> 2009-09-11 21:12:26 ---
Error persists in Wine version 1.1.29
--
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=4478
--- Comment #26 from cnbiz850(a)sohu.com 2009-09-11 04:34:52 ---
Sorry, the last comment was not meant for this 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.
http://bugs.winehq.org/show_bug.cgi?id=4478
--- Comment #25 from cnbiz850(a)sohu.com 2009-09-11 04:32:39 ---
I back-tested with 1.1.17 which was a quite stable version and didn't seem any
such crashes back then. It now also crashes with the XML file having Chinese
in 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=19930
Summary: Can't install games with keycode.
Product: Wine
Version: unspecified
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: ae_7fam(a)yahoo.com
I tried installing Age of Empires 3 onto my computer. I get stuck at the screen
prompting for the code. I put it in. When I click OK, it comes up with a dialog
box saying "Error loading PID Gen DLL: The file could not be found!" Same thing
happens if I input wrong code.
Any and all help is appreciated.
--
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=20005
Summary: MAKE_HRESULT macro is defined wrong..
Product: Wine
Version: 1.1.29
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: directx-d3d
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: celticht32(a)aol.com
#define MAKE_HRESULT(sev,fac,code) \
((HRESULT) (((unsigned int)(sev)<<31) | ((unsigned int)(fac)<<16) |
((unsigned int)(code))) )
which is defined in include/winerror.h
should be the following :
#define MAKE_HRESULT(sev,fac,code) \
((HRESULT) (((unsigned long)(sev)<<31) | ((unsigned long)(fac)<<16) |
((unsigned long)(code))) )
so for the following call make_hresult(1,_facwined3d,2152)
I believe the first macro translates it to :
1 | 43B | 434
not
1 | 876 | 868
according to MSDN site :
http://msdn.microsoft.com/en-us/library/ms694497(VS.85).aspx
and the C spec states the following:
The C++ spec states summit like an unsigned long must be at least 32-bits and
an unsigned int must be at least 16-bits.
So I think we are dropping 16 bits when this is being used which might explain
some of the test failures on some of the machines...
--
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=3617
Ken Sharp <kennybobs(a)o2.co.uk> changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|RESOLVED |CLOSED
--- Comment #16 from Ken Sharp <kennybobs(a)o2.co.uk> 2009-09-10 16:56:09 ---
Closing as per last 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.