http://bugs.winehq.org/show_bug.cgi?id=5867
Summary: Dreamfall crashes on load
Product: Wine
Version: 0.9.18.
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: critical
Priority: P2
Component: wine-directx-d3d
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: the.weird(a)gmail.com
Dreamfall: The Longest Journey 2 crashes on game startup with a "TLJ2 Crashed"
dialog.
It initially complained of missing d3dx9_27.dll and refused to start at all, but
copying this file over to /system32 and attempting to run the game gives me a
"TLJ2 Crashed" message.
I noticed there wasn't a d3d9.dll in Wine's /system32, so i copied that and
d3d8thk.dll (required import by d3d9.dll) and tried running again with similar
results. The only change was that the console output was less than before.
--
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=5765
jan.wine(a)zerebecki.de changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|RESOLVED |UNCONFIRMED
Keywords| |download
Resolution|INVALID |
Summary|fixme:d3d:IWineD3DDeviceImpl|WarRock null pointer deref
|_SetRenderState |
------- Additional Comments From jan.wine(a)zerebecki.de 2006-05-08 22:06 -------
I suspect the reporter meant to report the crash (last line of the initial report).
Please retest this with a current wine and _attach_ the _whole_ output.
--
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=5856
------- Additional Comments From ekkehard.morgenstern(a)onlinehome.de 2006-05-08 20:58 -------
In the user part, the properties dialog and the screen handler need some
improvements. I'm apt with implementing consoles and terminals, so I might play
around with it a little. For example, RGB sliders would be cool, a preview
option, and much more.
Also, WCMD could be extended. Since Microsoft changed the commands and added new
ones in every Windows release, few people used them all, and there's plenty of
commands left to be implemented and/or extended. Plus, with WCMD, there's a new
possibility to add plenty of new commands that Microsoft didn't think of yet.
For example, some 2D graphics commands would be nice, sprites, user-defined
fonts and stuff; those would require the user backend, of course... ;-)
I'm not sure whether the command line options of WCMD commands can be
implemented as Microsoft's, for legal reasons; if necessary, they could be named
differently or behave differently. Unfortunately, I wasn't able to see the
command line options for any WCMD command, because "copy /?", "move /?" etc.
crashed on my box, for instance.
I will have more looks at the code and provide patches, and possible extensions
here, for now, until I've read about how to contribute properly.
--
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=4639
jan.wine(a)zerebecki.de changed:
What |Removed |Added
----------------------------------------------------------------------------
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=3283
vitaliy(a)kievinfo.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|UNCONFIRMED |RESOLVED
Resolution| |INVALID
------- Additional Comments From vitaliy(a)kievinfo.com 2006-05-08 18:46 -------
It's a fluxbox bug and not Wine's. Patch alrady commited into it so should be
fixed now.
--
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=5856
------- Additional Comments From ekkehard.morgenstern(a)onlinehome.de 2006-05-08 17:48 -------
OK, here's a patch for the current CVS Wine version of "wineconsole.c":
732a733,744
> * WINECON_OutputHelp
> *
> * Outputs help text.
> */
>
> static void WINECON_OutputHelp( void ) {
> WINE_MESSAGE(
> "Usage: wineconsole PROGRAM [ARGUMENTS...] Run the specified console
program\n"" wineconsole --help Display this help and
exit\n" " wineconsole --backend=user PROGRAM Run the program in its
own window\n"" wineconsole --backend=curses PROGR Run the program in this
terminal\n" " wineconsole --use-event=HNDDEC Signal specified event
after launch\nThe default for the backend option is 'user'.\n"
> );
> }
>
> /******************************************************************
742c754
< wci->backend = WCCURSES_InitBackend;
---
> wci->backend = WCUSER_InitBackend;
765a778
> wci->backend = WCCURSES_InitBackend;
770a784,787
> else if ( strncmp( wci->ptr, "--help", 6 ) == 0 ) {
> while ( *wci->ptr != '\0' ) ++wci->ptr;
> return TRUE;
> }
795a813,818
> WINECON_OutputHelp();
> return 0;
> }
>
> if ( *wci.ptr == '\0' ) {
> WINECON_OutputHelp();
816c839
< if (!ret)
---
> if (!ret) {
817a841,842
> WINECON_OutputHelp();
> }
It makes the USER backend the default, and outputs the command line options when
either "--help" is given, no args are given, or the args invalid.
(I hope the diff posted okay, haven't read the Bugzilla rules yet)
--
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=5124
vitaliy(a)kievinfo.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|NEW |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=5834
alex(a)thehandofagony.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|NEW |RESOLVED
Resolution| |FIXED
------- Additional Comments From alex(a)thehandofagony.com 2006-05-08 16:52 -------
This is fixed in GIT from earlier today.
--
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=3615
------- Additional Comments From jan.wine(a)zerebecki.de 2006-05-08 16:35 -------
The log about Tron2.0 indeed confirms it's the same problem.
--
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.