http://bugs.winehq.org/show_bug.cgi?id=11812
Summary: HattrickPoli. Lists lags and Notebook focus errors.
Product: Wine
Version: 0.9.55.
Platform: PC-x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: enhancement
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: jacobidiego(a)gmail.com
Created an attachment (id=11074)
--> (http://bugs.winehq.org/attachment.cgi?id=11074)
hattrick data of my account
HattrickPoli is a game tool that i have recently submitted on appDB It works
perfectly and it could be a Platinum but it has some unharmful errors:
This is a program with an interface based intensively on lists and notebook.
- Lists has lags when clicking on it.
- When clicking on notebooks tabs it shows the notebook page but doesnt focus
the notebook tab.
Both are unharmful errors but maybe are related to others.
This tool can be downloaded for free from www.hattrickpoli.com but if you dont
have an account on hattrick.org you will have no data on it, so i am attaching
the .dat file for you to have some data on it. Just unzip it on the
hattrickpoli dir.
This is wine 0.9.55 on ubuntu 7.10
--
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=9849
Summary: in win16 apps, exit status is lost, and always reported
as 0
Product: Wine
Version: 0.9.45.
Platform: Other
OS/Version: other
Status: NEW
Keywords: download, source
Severity: normal
Priority: P2
Component: wine-dos
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: dank(a)kegel.com
Simple win16 programs that just terminate with nonzero
status do so properly on winxp, but on wine, wine terminates
with zero status.
This is easy to test with openwatcom and a trivial C program, e.g.
#include <stdlib.h>
#include <unistd.h>
extern void myexit( void );
#pragma aux myexit = \
"mov ax,4c01h" \
"int 21h"
int main()
{
/*exit(1);
_exit(1);
__exit(1);*/
myexit();
return 1;
}
I compiled this with the overly complicated commandline
wine wcc '-i=C:\WATCOM\h\win;C:\WATCOM\h'-zW -e25 -zq -od -d2 -bw-bt=windows
foo.c
wine wlink file foo.obj
To test, do
wine foo.exe
echo $?
It should output 1, but it outputs 0.
--
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=13202
Summary: ClientSideWithRender fixes Auran Trainz text, but breaks
window elements in Steam
Product: Wine
Version: 1.0-rc1
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: baloo(a)ursine.ca
Setting the registry key
HKEY_CURRENT_USER\Software\Wine\X11 Driver\ClientSideWithRender in Wine's
regedit fixes the infamous disappearing text problem in some games (such as the
Auran Trainz series), but causes some UI elements in Steam to become invisible.
--
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=15892
Summary: BYOND Crash
Product: Wine
Version: 1.1.7
Platform: PC
URL: http://www.byond.com
OS/Version: other
Status: UNCONFIRMED
Severity: enhancement
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: stevenw9(a)gmail.com
Created an attachment (id=17050)
--> (http://bugs.winehq.org/attachment.cgi?id=17050)
BYOND Crash Debug Output
BYOND suddenly crashes when launching the game: BYOND Tabletop Game. I'm not
sure why, so I placed some debug info underneath this.
--
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=14882
Summary: UpdateResource fails to delete a resource
Product: Wine
Version: 1.1.2
Platform: All
OS/Version: All
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: kernel32
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: johnlen7+wine(a)gmail.com
UpdateResource should, according to MSDN, delete a resource if
(!lpData)&&(!cbData). This is actually the way applications can delete
resources and various resource-related application, like InnoSetup, use it.
However wine's current implementation of UpdateResourceW unconditionally calls
allocate_resource_data, which will fail if either lpData or cbData is NULL.
I hope I can fix it, but I will need to familiarize myself with kernel32 code
first.
--
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=14222
Summary: RpcBindingSetAuthInfo(Ex) fails with
RPC_C_AUTHN_GSS_NEGOTIATE
Product: Wine
Version: CVS/GIT
Platform: Other
OS/Version: other
Status: UNCONFIRMED
Severity: enhancement
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: winesku(a)googlemail.com
RpcBindingSetAuthInfo(Ex) fails with RPC_S_UNKNOWN_AUTHN_SERVICE if
RPC_C_AUTHN_GSS_NEGOTIATE is specified. While this looks correct at first
glance, because WINE's secur32.dll currently has no Negotiate provider, but
instead only an NTLM provider, it is not what applications expect. Since
Windows 2000, RPC clients that call RpcBindingSetAuthInfo(Ex) can at least
expect that this call succeeds with the selection of NTLM, even in non-domain
environments. Therefore WINE's RpcBindingSetAuthInfo(Ex) should make a fallback
to RPC_C_AUTHN_WINNT if RPC_C_AUTHN_GSS_NEGOTIATE is requested by the caller
but only NTLM is available. After all, by specifying RPC_C_AUTHN_GSS_NEGOTIATE,
the client indicated that NTLM is sufficient.
--
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=16484
Summary: Dramatica Demo 4.0 file open dialog has the file name
text box cursor in an incorrect position
Product: Wine
Version: 1.1.10
Platform: PC
URL: http://www.softpedia.com/get/Others/Miscellaneous/Dramat
ica-Pro.shtml
OS/Version: Linux
Status: UNCONFIRMED
Severity: enhancement
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: arethusa26(a)gmail.com
Created an attachment (id=17882)
--> (http://bugs.winehq.org/attachment.cgi?id=17882)
Dramatica Demo 4.0 file open dialog on Windows
While testing bug 16483, I noticed that when opening the file open dialog (File
-> Open), the initial placement of the file name text box cursor seems to be in
the middle of the text box control rather than at the starting left side, as it
is on Windows. If the dialog box is clicked on, the cursor is restored to its
normal location. Screenshots are 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=17004
Summary: C&C Red Alert 3: black screen when Shadow Quality > Low
Product: Wine
Version: 1.1.8
Platform: PC
OS/Version: Linux
Status: NEW
Severity: enhancement
Priority: P2
Component: directx-d3d
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: alex(a)thehandofagony.com
When the Shadow Quality in C&C Red Alert 3 is set to greater than Low, the game
only shows a black screen after loading a map. There is a demo of this game,
I'll download it and see if it has the same problem.
--
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=16503
Summary: Gears of War pagefaults
Product: Wine
Version: 1.1.10
Platform: PC-x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: liquitsnake(a)gmx.net
Created an attachment (id=17931)
--> (http://bugs.winehq.org/attachment.cgi?id=17931)
log
Gears of War 1.0 with crack pagefaults. See log. Without crack it cries about
it's mommy...err disk
--
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=17798
Summary: Deus Ex: Invisible War crashed upon loading the main
menu.
Product: Wine
Version: 1.1.16
Platform: PC-x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: directx-d3d
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: holy.smoking.floorboards.batman(a)gmail.com
Basically, I've tried running Deus Ex 2 for some time now in the last few
releases of Wine. The game installs just fine and when I start it up the intro
videos play just fine (including sound) but when the main menu loads, the game
crashes. What is supposed to happen is that the main menu buttons are supposed
to 'swirl' around a central logo. Instead, the buttons will start 'swirling',
but then stop after a brief moment (so they only go partway) and the music will
play the first second, or so, and then repeat the next 2 seconds.
In the console, I get this error output repeatedly:
'fixme:d3d:state_wrap (WINED3DRS_WRAP0) Texture wraping not yet supported'
I have tried updating the game, using a nocd hack and disabling sound, but
nothing works. I've noticed that if I change the virtual machine from Windows
XP (which is my default) to Windows 98, the game wont even detect the CD being
in the drive.
--
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.