http://bugs.winehq.org/show_bug.cgi?id=20480
Summary: Soldier of Fortune II Multiplayer Main Menu won't show
up
Product: Wine
Version: 1.1.32
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: atiitto(a)luukku.com
This problem was already corrected probably in Wine version 1.0.1 according to
Roland Haeder. It has been around at least in 1.1.31 and 1.1.32.
When launching Sof2mp.exe, "Loading..."-text appears normally, but when
entering the menu, text flashes once, but won't go away. Menu is still working:
music is hearable, mouse movements can be heard, etc.
What has been tested:
- Using a Virtual Desktop. (Has worked earlier (1.0.1 case).)
Thought of a possible temporary workaround:
- Playing the intro movies before the menu (if possible). In single player
mode, menus do work, though disabling the movies haven't been tested yet.
--
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=9919
Summary: Microsoft Access Snapshot Viewer 10.0 install fails
Product: Wine
Version: 0.9.46.
Platform: Other
URL: http://www.microsoft.com/downloads/details.aspx?familyid
=B73DF33F-6D74-423D-8274-8B7E6313EDFB&displaylang=en
OS/Version: other
Status: NEW
Keywords: download, Installer
Severity: enhancement
Priority: P2
Component: wine-misc
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: dank(a)kegel.com
md5sum: 2aec4a3c7a1c928deeb7d1e9b8779bb2 snpvw.exe
The installer aborts with "A setup initialization file has been corrupted."
The installer seems to be a win16 app.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=15866
Summary: MechCommander 2: DSERR_CONTROLUNAVAIL errors
Product: Wine
Version: 1.0.1
Platform: PC
URL: http://www.mechcommander.org
OS/Version: Linux
Status: UNCONFIRMED
Severity: enhancement
Priority: P2
Component: directx-dsound
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: georg298(a)gmx.de
Starting the game with
WINEDLLOVERRIDES="dpnet=n" wine MC2Rel.exe -window /gosnoblade /gosusehw
it will display many
FAILED (0x8878001e - DSERR_CONTROLUNAVAIL) - SetPan(0x8fa89a0: 0)
errors. These errors occur each time a sound notification or similar (e.g.
hovering the mouse over a button in the menu or firing a weapon inside the
game) is played.
The reason is the function
IDirectSoundBufferImpl_SetPan
inside buffer.c from dsound dll.
The following code is the reason:
/* You cannot use both pan and 3D controls */
if (!(This->dsbd.dwFlags & DSBCAPS_CTRLPAN) ||
(This->dsbd.dwFlags & DSBCAPS_CTRL3D)) {
WARN("control unavailable\n");
return DSERR_CONTROLUNAVAIL;
}
Is the logic here correct?
Shouldn't "if(!A || B)" really be if(!(A || B)) ?
However the comment "You cannot use both pan and 3D controls" doesn't make any
sense in both cases, I think.
If I change it accordingly, it will work (not display these errors any more):
/* You cannot use both pan and 3D controls */
if (!((This->dsbd.dwFlags & DSBCAPS_CTRLPAN) ||
(This->dsbd.dwFlags & DSBCAPS_CTRL3D))) {
WARN("control unavailable\n");
return DSERR_CONTROLUNAVAIL;
}
Changing it according to the comment to if(A && B) doesn't work.
I hope I provided enough information. I don't really know what I did there.
--
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=9491
Summary: CListCtrl:GetSubItemRect doesn't work for the label row
Product: Wine
Version: 0.9.44.
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: minor
Priority: P2
Component: wine-comctl32
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: bgp(a)cs.elte.hu
When I call CListCtrl::GetSubItemRect with m_item = -1, it supposed to handle
the label row. It works in windows. Under wine, it doesn't work, ref will
contain garbage.
res = CListCtrl::GetSubItemRect(m_item,m_subitem,LVIR_BOUNDS,ref);
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=15083
Summary: ReadConsoleInputW() returns wrong values for CTRL+SPACE
Product: Wine
Version: 1.1.3
Platform: Other
OS/Version: other
Status: UNCONFIRMED
Severity: minor
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: dg(a)cowlark.com
On the Windows console, if I use ReadConsoleInputW() to read user input and the
user types CTRL+SPACE, wine returns wVirtualKeyCode=VK_SPACE, UnicodeChar=0
where Windows XP returns wVirtualKeyCode=VK_SPACE, UnicodeChar=32.
--
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=11627
Summary: Need for Speed 2 SE 3dfx demo fails to start
Product: Wine
Version: CVS/GIT
Platform: PC-x86-64
URL: http://www.nfshome.com/demos.php
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: kernel32
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: greg87(a)online.de
It just prints:
The instruction at 0x00498d32 referenced memory at 0x00000004.
The memory could not be written.
And silently exits after that.
Which it didnt did before:
b22183703f8f77f8e1e32482f34934cadd207963 is first bad commit
commit b22183703f8f77f8e1e32482f34934cadd207963
Author: Alexandre Julliard <julliard(a)winehq.org>
Date: Mon Oct 15 22:32:36 2007 +0200
kernel32: Fix GlobalMemoryStatus to take into account the
IMAGE_FILE_LARGE_ADDRESS_AWARE flag.
Also the page file size must not be truncated to 2Gb no matter what
the flag is set to.
:040000 040000 22266407af840ef6a38386a64fdc247e895c66ac
3924caf0140dfbe4bf8aff939710b1517b970e9f M dlls
--
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=14093
Summary: 1cv8.exe crashes with message bin/1cv8.exe: text.c:719:
TEXT_NextLineW: Assertion `pellip->under == 0 && pellip-
>after == 0' failed.
Product: Wine
Version: 1.0.0
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: trivial
Priority: P2
Component: user32
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: aleksander.smirnoff(a)gmail.com
when calculator child window opened, minimizing main window leads to crash with
message :
bin/1cv8.exe: text.c:719: TEXT_NextLineW: Assertion `pellip->under == 0 &&
pellip->after == 0' failed.
please change assert to a simple warning.
Thanks!
--
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=19876
Summary: Video Frame shifted up....
Product: Wine
Version: 1.1.28
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
If you run WOW at a resolution lower than the max res available the video
shifts up and you only get the bottom buffer.. so it flashes and you do not see
the background or characters.
Fresh install of Wine with Aug 28 GIT and new .wine directory.
No added dll's and fresh install of fedora 10
glx info shows direct rendering and glxgears run fine.
If I run wow under vmware the video is fine.
--
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=13398
Summary: Star Wars Knights Of The Old Republic Will Shows Splash
Screen and Quits
Product: Wine
Version: 1.0-rc2
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: baceman007(a)gmail.com
Star Wars Knights of the Old Republic shows a splash screen then quits. This
game worked in version 9.59 but after an upgrade from Ubuntu 7 to Ubuntu 8.04
and an upgrade of Wine from 9.59 to version 1-RC1 or now 1-RC2 the game will
launch, show the game menu, then if you choose game show the opening loading
image of a millennium falcon like ship, then quit with no displayed errors. I
have tried disabling sound and movies from the game menu, disabled the hardware
mouse, and set the textures to low. I've also tried changing the screen
resolution, running it in and out of a virtual desktop and using the most
recent NVIDIA drivers with Wine and tried different screen resolutions. I've
also tried all of the available sound drivers in version RC2. Please let me
know what other information you need from me to help you out here. My machine
is an AMD Athalon 1Ghz with 1GB of RAM and a sound blaster CA0106.
--
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=10346
Summary: Cabelas Big Game Hunter 3 fails with series of Direct
Draw error Dialogs
Product: Wine
Version: CVS/GIT
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: minor
Priority: P2
Component: wine-directx-ddraw
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: ead1234(a)hotmail.com
When I try to launch Cabelas Big Game Hunter 3 I get a series of Direct Draw
error dialog boxes. The first states unknown directdraw error, and the second
says DDraw Unsupported.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are watching all bug changes.