http://bugs.winehq.org/show_bug.cgi?id=14811
Summary: Default Menu Style
Product: Wine
Version: unspecified
Platform: Other
OS/Version: Linux
Status: UNCONFIRMED
Severity: trivial
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: jarosser06(a)gmail.com
Binary package hint: wine
There are two different menu styles in Windows/Wine, and the flat style looks
better. (It's the default in WinXP until you change your theme.) It can be
selected by flipping a bit in user.reg:
"UserPreferenceMask"=hex:10,00,00,80
change to:
"UserPreferenceMask"=hex:10,00,02,80
http://blogs.msdn.com/tonyschr/archive/2004/05/10/129412.aspxhttp://www.codeproject.com/KB/menus/flatmenuform.aspx
--
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=24277
Summary: Topside-down transparent png images in apps compiled
with fpc
Product: Wine
Version: 1.3.1
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: Mitya57(a)gmail.com
Here's demo executable showing different types of images using TImage
component. It's compiled with Free Pascal Compiler.
http://www.megaupload.com/?d=NVSAW5Y1
Transparent png image is reverted and mirrored, other images are OK. Look in
Windows is OK.
--
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=24274
Summary: Worms Reloaded: Crash with Radeon driver - "Assertion
`dstRowStride' failed."
Product: Wine
Version: 1.3.1
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: userof(a)hotmail.co.uk
Created an attachment (id=30570)
--> (http://bugs.winehq.org/attachment.cgi?id=30570)
Debug output
When trying to handle some textures (not yet known what), Worms Reloaded will
crash due to a failed operation with the Radeon driver - "Assertion
`dstRowStride' failed."
This bug isn't caused by the 3D backgrounds or character models, as both run
perfectly at the main menu. The crash happens when starting a game or loading
the landscape editor.
However, if you delete your saved profile (Profile_PROFILES.dat), then restart
the game and create a team again, it IS possible to play one game, but only on
the Quick Game mode. This always starts a game in the 'Hell' landscape, which
plays perfectly. This suggests that the Hell landscape doesn't cause this
crash, but perhaps the other landscapes do. This could be do with the main
landscape texture, or perhaps the size of the landscape.
Further testing, perhaps hacking in the Hell texture into other landscapes, is
needed to confirm the exact cause of this problem. The game also generates
mini-dumps, which could be used to help identify the problem, but are probably
only useful to Team 17 themselves.
Some investigation as to what exactly this error means would also be helpful.
Log with full error is attached.
--
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=1347
Joel Pichette <jpichette(a)hotmail.com> changed:
What |Removed |Added
----------------------------------------------------------------------------
CC| |jpichette(a)hotmail.com
--- Comment #63 from Joel Pichette <jpichette(a)hotmail.com> 2010-09-06 01:52:41 CDT ---
Is this bug 1347 a duplicate of bug 2467 ?
Bug 2467: Starcraft Battle.NET menu are rendered on a black surface instead of
rendering on the bitmap background, with wine v0.9.7.x - v1.2.x,
OR
Bug 2467 3-4 years ago: Starcraft Battle.NET menu items are not visible and
only the bitmap background is visible, with older wine v0.9.6.x)
--
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=24207
Summary: Nvidia drivers and stupid fpu
Product: Wine
Version: 1.3.1
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: enhancement
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: thunder_8888(a)mail.ru
At all, it's not a wine bug, but bug of nvidia driver and bad code of windows
programm.
When i start some games from tasofro, shows black window and game hang up. It's
bug appears only on Nvidia drivers, because they use not safe code in
libGLcore. During glXCreateContext it does this:
leal 0x2ac(%esp),%esi
leal 0x2b0(%esp),%ecx
...
195230: movl 0x2a8(%esp),%eax
195237: movl %eax,0x2a4(%esp)
19523e: flds 0x2a8(%esp)
195245: fmul %st(1),%st
195247: fstps 0x2a8(%esp)
19524e: flds 0x2b0(%esp)
195255: flds 0x2a8(%esp)
19525c: faddp %st,%st(1)
19525e: fstps 0x2ac(%esp)
195265: movl 0x0(%esi),%edx
195267: movl 0x0(%ecx),%eax
195269: cmpl %eax,%edx
19526b: jnz 195230
While this exact code is called on every context creation, it clearly doesn't
cause anything problematic for most non-Tasofro apps. This is because of the
FPU rounding mode. In the default setting, it will always converge because the
two values are constants. However, Tasofro sets the FPU Control Word to 0A7F at
some point, which means it always rounds up rather than rounds to nearest. This
means that the value will never converge. So it just gets stuck in an infinite
loop.
(If i patch exe for rounding mode - game starts normally)
Well, i think wine may reset rounding mode before call glXCreateContext
--
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=657
Sebastian.Leske(a)sleske.name changed:
What |Removed |Added
----------------------------------------------------------------------------
CC|Sebastian.Leske(a)sleske.name |
--
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=7510
Dan Kegel <dank(a)kegel.com> changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|NEW |RESOLVED
Resolution| |FIXED
--- Comment #43 from Dan Kegel <dank(a)kegel.com> 2010-09-05 13:53:58 CDT ---
Closing, original problem reported fixed, responsiveness problem filed as bug
20415.
--
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=7510
--- Comment #42 from Niko Sandschneider <nsandschn(a)gmx.de> 2010-09-05 13:49:23 CDT ---
(In reply to comment #41)
> Bug 20415 is also for the gui, would that do?
>
> BTW does the current app still msvcrt71? Winetricks now has a verb for that.
No, msvcrt71 is not required to install the app. I would recommend to close
this as a duplicate of bug 20415.
--
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=6303
--- Comment #13 from Nikolay Sivov <bunglehead(a)gmail.com> 2010-09-05 12:25:32 CDT ---
Bojan, please retest with 1.3.2 and if it does start feel free to mark this
fixed.
--
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=10885
Summary: Some bitmaps are drawn topside-down (Lazarus 0.9.24)
Product: Wine
Version: 0.9.51.
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-gdi-(printing)
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: bugzilla(a)tut.by
Created an attachment (id=9788)
--> (http://bugs.winehq.org/attachment.cgi?id=9788)
Lazarus 0.9.24 being run under WINE 0.9.51
Some icons are drawn incorrectly in Lazarus 0.9.24 (win32 version).
Please see attachments.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are watching all bug changes.