http://bugs.winehq.org/show_bug.cgi?id=7875
------- Additional Comments From truiken(a)gmail.com 2007-04-04 16:45 -------
Can you attach a +relay,+msi log? The msi log doesn't show anything by itself.
--
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=7818
------- Additional Comments From bjohnson(a)symetrix.com 2007-04-04 16:34 -------
The patch would not apply to 0.32, so I upgraded to 0.34. Running under 0.34 +
the patch posted above worked more me.
--
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=7939
stefandoesinger(a)gmx.at changed:
What |Removed |Added
----------------------------------------------------------------------------
CC| |stefandoesinger(a)gmx.at
------- Additional Comments From stefandoesinger(a)gmx.at 2007-04-04 16:19 -------
You can check if it was really this patch by going back to current git and
remove the glEnable(GL_SCISSOR_TEST) in dlls/wined3d/device.c. If that fixes
the problem you blamed the right person :-) In that case, can you attach a
+d3d log?
--
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=7866
fausto.saporito(a)atosorigin.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|UNCONFIRMED |RESOLVED
Resolution| |FIXED
--
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=7485
------- Additional Comments From hverbeet(a)gmail.com 2007-04-04 16:02 -------
I don't think declarationWNumElements should ever be 0 for a valid vertex
declaration. You'll probably want to figure out what that vertex declaration
exactly looks like, and where it comes from.
--
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=7952
Summary: World of Warcraft 2.0.12 crash
Product: Wine
Version: CVS
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: critical
Priority: P2
Component: wine-misc
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: fausto.saporito(a)atosorigin.com
Hello,
after I applied 2.0.12 patch, WoW doesn't start anymore and it freezes the
keyboard and screen, and I have to power off the computer to resume the normal
operativity.
I tried with 0.9.34, CVS either in d3d mode either in opengl mode.
I attached a log file with some debug info, opengl related. If you now some
other relevant switch to pass to WINEDEBUG env variable, i could try to run
using them.
The wine version I used to produce the log file is wine-0.9.34-g072698c, and I'm
running an OpenSUSE 10.2 with i910 graphic card.
The X server is set up to 24bit bpp, and the version is 7.2.0 RC2
I'm using AIGLX option.
--
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=7485
------- Additional Comments From yoyo(a)wine.ksp.sk 2007-04-04 15:43 -------
I played with it a bit and this seems to be the problem (wined3d/drawprim.c
lines 166 and 176):
for (i = 0; i < vertexDeclaration->declarationWNumElements - 1; ++i)
primitiveDeclarationConvertToStridedData is sometimes called with
declarationWNumElements==0 , which is defined as UINT (unsigned) so the
for-cycle is executed...
Casting it to int:
for (i = 0; i < (int)vertexDeclaration->declarationWNumElements - 1; ++i)
solves that problem, but wine then crashes on something else...
--
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=7929
------- Additional Comments From viriiboxen(a)gmail.com 2007-04-04 15:15 -------
This bug also applies to Command and Conquer: Generals. The game doesn't seem
to be able to resolve the machine's IP address correctly, but this can be
worked around by typing the IP and hostname manually into /etc/hosts. When
this is done, a game running on Windows in the same network can see the wine
installation in the lobby and receive text from it in the chat, but the
inverse isn't true, the wine one only sees itself. A game created in wine
shows up in windows, but an attempt to connect will fail with a timeout.
However, using the Direct Connect method in Generals, multiplayer seems to
work fine. Sadly, Tiberium Wars seems to lack that option, so that workaround
isn't available.
--
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=7951
Summary: Created .desktop files contain characters in wrong
encoding
Product: Wine
Version: 0.9.32.
Platform: Other
OS/Version: Linux
Status: UNCONFIRMED
Severity: minor
Priority: P2
Component: wine-setupapi
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: anpaza(a)mail.ru
The standard for .desktop files says that all strings (such as icon name) inside
the .desktop file must be in the UTF-8 encoding. WINE does not re-encode the
application name (from WANSI) which results in bad icon name if icon name
contains national characters (such as Cyrillic in my case - the icon title is
written to the .desktop file in Windows-1251 encoding while it should be
translated to UTF-8 in order for GNOME/KDE to handle them correctly).
--
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=7943
------- Additional Comments From dank(a)kegel.com 2007-04-04 13:15 -------
BTW, do not run Wine as root. Any bug reports where the
user ran as root are likely to be marked INVALID.
--
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=2155
rmh(a)aybabtu.com changed:
What |Removed |Added
----------------------------------------------------------------------------
CC| |rmh(a)aybabtu.com
------- Additional Comments From rmh(a)aybabtu.com 2007-04-04 12:53 -------
*** Bug 7552 has been marked as a duplicate of this bug. ***
--
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=7552
rmh(a)aybabtu.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|UNCONFIRMED |RESOLVED
Resolution| |DUPLICATE
------- Additional Comments From rmh(a)aybabtu.com 2007-04-04 12:53 -------
Sounds like a duplicate.
*** This bug has been marked as a duplicate of 2155 ***
--
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=6991
thestig(a)google.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|UNCONFIRMED |RESOLVED
Resolution| |FIXED
--
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=7950
Speeddymon(a)gmail.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Summary|DirctX strange render window|DirectX strange render
|cutoff in Candytron both |window cutoff in Candytron
|Party and Final version |both Party and Final version
--
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=7923
------- Additional Comments From focht(a)gmx.net 2007-04-04 11:06 -------
Hello,
i had a look at it ... bad news ... its called "themida".
That game is protected by this advanced engine which implements various user and
kernel level modifications to prevent debuggers and other tools from work.
The exceptions as seen in wine trace come from various usermode debugging
tricks, like int 0x1/0x3 (replaces to prevent hw and sw (0xCC type) breakpoints).
Further int 0xE and int 0xB are hooked at system level (prevents memory type bp)
Some SST entries too (ZwAllocateVirtualMemory, ZwCreateThread, ZwDebugContinue,
ZwQueryVirtualMemory and more..) - additonally it puts up various stuff which
makes sure no one modifies IDT and SST at ring0.
Simplified: it works just like a rootkit.
Though there exist some older manual unpacking tutorials to restore IAT and OEP
which are very time consuming (no guarantee of success), the newer engines are
suspected to employ some kind of virtual machine (this stuff seems to become
more popular lately in newer PE protectors).
In short: it's beyond the scope of wine.
If you really want to play that game, i suggest to use dual boot or vmware.
Regards
--
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=7939
------- Additional Comments From daniel.skorka(a)stud.uni-karlsruhe.de 2007-04-04 09:32 -------
Ok, I followed http://wiki.winehq.org/GitWine for regression testing. The bad
patch is either 7126b63645747fe035aaa1167f0dcda8cb38be01 (Stefan Dösinger
2007-03-02/9:25:02), or efe156ae8ec4163da2a51511297dee2f6a5d0235 (Chris
Robinson, 2007-03-05/9:12:29). As I don't think quartz has anything to do with
it, I'm going to blame Stefan...
--
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=6080
tony.lambregts(a)gmail.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Keywords|Abandoned? |
------- Additional Comments From tony.lambregts(a)gmail.com 2007-04-04 08:23 -------
Judging from the number of maintainers for this app in the AppDB I do not think
we need to abandon this bug (worst case is that we resolve it as WORKSFORME ..)
--
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=7950
mitch074(a)gmail.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Summary|strange render window cutoff|DirctX strange render window
|in both Party and Final |cutoff in Candytron both
|version |Party and Final version
--
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=7950
Summary: strange render window cutoff in both Party and Final
version
Product: Wine
Version: 0.9.34.
Platform: PC
URL: http://www.scene.org/file.php?file=/demos/groups/farb-
rausch/fr-030_candytron_final.zip&fileinfo
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P3
Component: wine-directx-d3d
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: mitch074(a)gmail.com
This is a 64k demo by Farb-rausch; that same group created several using the
same procedural content engine, and pretty much all of them function as intended
and don't exhibit that bug.
Essentially:
1-upon starting, the render window is correctly dimensioned as full screen (800x600)
2-after content generation bar reaches completion, 3D starts running in full
screen correctly
3-after the first screen blackout, the render window is truncated on the left
(+-20% of screen) and bottom (+- 30% of screen)
Playback goes well anyway; only minor defects such as overly strong HDR-like
effect and some missing fonts in the background (but only some - this may come
from a build defect, as other fonts appear)
Problem occurs in both GLSL and ARB modes (they seem identical otherwise). It
has been made for Geforce2-level hardware.
It once seemed to be very sensitive to sound emulation (required OSS driver
emulation), but now works with ALSA with 'standard' acceleration.
No error message in console when the bug occurs (only thing appearing is the
frame buffer size stub - making available RAM 128 Mb changes nothing) - as such
I guess it's not a missing function, but rather a bug in an existing function.
--
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=6080
jan.wine(a)zerebecki.de changed:
What |Removed |Added
----------------------------------------------------------------------------
Component|wine-debug |wine-misc
Keywords| |Abandoned?
--
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=7095
rob(a)codeweavers.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Component|wine-ole |wine-loader
------- Additional Comments From rob(a)codeweavers.com 2007-04-04 06:06 -------
Patch committed that fixed the original crash. No longer an ole bug.
--
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.