[Bug 10283] New: Outcast : game and demo don't start.
http://bugs.winehq.org/show_bug.cgi?id=10283 Summary: Outcast : game and demo don't start. Product: Wine Version: 0.9.48. Platform: PC URL: http://www.jeuxvideopc.com/demo/download_go-1869- 622867.php OS/Version: Linux Status: UNCONFIRMED Severity: normal Priority: P2 Component: wine-directx AssignedTo: wine-bugs(a)winehq.org ReportedBy: remjg(a)free.fr Created an attachment (id=8935) --> (http://bugs.winehq.org/attachment.cgi?id=8935) logs Outcast Game and Outcast Demo Hello! I try to launch the Outcast game and the Outcast demo with Wine 0.9.48 but Wine fails with the same error in each case. I've tried many configurations from winecfg but I don't know anything about Wine... Nevertheless, this game was working with Wine some years ago as I saw in the application database : http://appdb.winehq.org/appview.php?iAppId=2612 I know that I don't give much information... -- 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=10283 Stefan Dösinger <stefandoesinger(a)gmx.at> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |stefandoesinger(a)gmx.at --- Comment #1 from Stefan Dösinger <stefandoesinger(a)gmx.at> 2007-11-02 11:13:49 --- If you can get the old wine versions working you can see if they still run the game(to exclude changes to the Linux system as cause), and if it runs, do a regression test http://wiki.winehq.org/GitWine, 6.1, regression testing -- 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=10283 --- Comment #2 from Austin English <austinenglish(a)gmail.com> 2007-11-02 12:06:59 --- This guide is somewhat friendlier: http://wiki.winehq.org/RegressionTesting -- 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=10283 --- Comment #3 from Rémi Grolleau <remjg(a)free.fr> 2007-11-02 12:41:49 --- (In reply to comment #2)
This guide is somewhat friendlier:
Yes I can confirm this guide is easier ;) Someone give me the link on the wine-users mailling list... Nevertheless, I've a compilation error while doing a regression test so in a first time I vould prefer test one version, especially Wine 0.9 to be sure Outcast runs with it. But I've a question : How can I get wine 0.9 with Git? I just discover Git, and I've never use CVS or something like that so it's difficult for me. -- 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=10283 --- Comment #4 from Stefan Dösinger <stefandoesinger(a)gmx.at> 2007-11-02 13:12:17 --- git branch oldstuff wine-0.9 git checkout oldstuff -- 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=10283 --- Comment #5 from Austin English <austinenglish(a)gmail.com> 2007-11-02 13:39:28 --- If you have errors while compiling, it's likely either missing dependencies or the libraries are too new for the old code (happens frequently with really old versions of wine). Try running: $ ./configure --verbose And see what errors you have. Fix those errors before trying again. If you still get errors, ask for help on wine-users. This bug report is for the original bug, Outcast not starting. -- 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=10283 Peter Beutner <p.beutner(a)gmx.net> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |p.beutner(a)gmx.net --- Comment #6 from Peter Beutner <p.beutner(a)gmx.net> 2007-11-10 08:11:32 --- from WINEDEBUG=+win log: ------ trace:win:SetWindowPos hwnd 0x2002a, after (nil), -1736677,-548885 (0x0), flags 00000001 trace:win:dump_winpos_flags flags: SWP_NOSIZE ------- seems the window is just invisible because it is moved off the screen. I'm not really familiar with this area, is it valid to pass negativ values here? inserting a simple hack: --- a/dlls/user32/winpos.c +++ b/dlls/user32/winpos.c @@ -1672,6 +1672,10 @@ BOOL WINAPI SetWindowPos( HWND hwnd, HWND hwndInsertAfter, return FALSE; } + if(x < 0 && y < 0) + return TRUE; and the menu shows up. -- 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=10283 Austin English <austinenglish(a)gmail.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Component|_obsolete_directx |-unknown -- 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=10283 Louis Lenders <xerox_xerox2000(a)yahoo.co.uk> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |xerox_xerox2000(a)yahoo.co.uk Status|UNCONFIRMED |NEW Component|-unknown |user32 Ever Confirmed|0 |1 --- Comment #7 from Louis Lenders <xerox_xerox2000(a)yahoo.co.uk> 2008-03-07 16:13:55 --- Confirmig, and also confirming that the patch/hack from comment #6 let's me start the game 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=10283 Louis Lenders <xerox_xerox2000(a)yahoo.co.uk> changed: What |Removed |Added ---------------------------------------------------------------------------- Keywords| |download, regression --- Comment #8 from Louis Lenders <xerox_xerox2000(a)yahoo.co.uk> 2008-03-07 16:21:27 --- tested in wine-20050211, menu shows up fine, so a very old regression.if i have time i'll try do regression test -- 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=10283 Alexandre Julliard <julliard(a)winehq.org> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution| |FIXED --- Comment #9 from Alexandre Julliard <julliard(a)winehq.org> 2008-05-23 05:47:37 --- It should be fixed by 688febb8ce81ae701c76fe46170982394b8c7d59. -- 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=10283 Alexandre Julliard <julliard(a)winehq.org> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|RESOLVED |CLOSED --- Comment #10 from Alexandre Julliard <julliard(a)winehq.org> 2008-05-23 10:37:11 --- Closing bugs fixed in 1.0-rc2. -- 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.
participants (1)
-
wine-bugs@winehq.org