https://bugs.winehq.org/show_bug.cgi?id=43517
Louis Lenders xerox_xerox2000@yahoo.co.uk changed:
What |Removed |Added ---------------------------------------------------------------------------- Keywords| |download Ever confirmed|0 |1 CC| |xerox_xerox2000@yahoo.co.uk Status|UNCONFIRMED |NEW URL| |http://madvr.com/
--- Comment #4 from Louis Lenders xerox_xerox2000@yahoo.co.uk --- I can confirm the bug.
Looks like it`s related to:
fixme:ntdll:NtQueryTimerResolution (0x32f778,0x32f770,0x32f774), stub!
With the hack below I was able to start the program. Though I had to run with LIBGL_ALWAYS_SOFTWARE=1 wine madTPG.exe (probably because of crappy IntelGPU on my side)
I don`t know how to use the program, so I don`t know if it really works with the hack. @Hakan,maybe you could try if the hack works around the crash for you too, the at least we know where the problem is.
diff --git a/dlls/ntdll/sync.c b/dlls/ntdll/sync.c index cfb5cbc..e3e772f 100644 --- a/dlls/ntdll/sync.c +++ b/dlls/ntdll/sync.c @@ -996,7 +996,7 @@ NTSTATUS WINAPI NtQueryTimerResolution(OUT ULONG* min_resolution, FIXME("(%p,%p,%p), stub!\n", min_resolution, max_resolution, current_resolution);
- return STATUS_NOT_IMPLEMENTED; + return 0;//STATUS_NOT_IMPLEMENTED; }