http://bugs.winehq.org/show_bug.cgi?id=8295
--- Comment #18 from Tiago Marques <tiagomnm(a)gmail.com> 2009-08-10 16:41:54 ---
(In reply to comment #16)
> (In reply to comment #15)
> > Is this still an issue in current (1.1.25 or newer) wine?
>
> Hi Austin,
>
> Yes, it's still present. I will check to see if it's the same error, as I now
> get this:
>
> fixme:xrandr:X11DRV_XRandR_SetCurrentMode Cannot change screen BPP from 32 to
> 16
> fixme:d3d:IWineD3DDeviceImpl_CreateSwapChain The app requests more than one
> back bu
> ffer, this can't be supported properly. Please configure the application to use
> dou
> ble buffering(=1 back buffer) if possible
> err:d3d:IWineD3DDeviceImpl_SetupFullscreenWindow (0x137500): Want to change the
> win
> dow parameters of HWND 0x4003a, but another style is stored for restoration
> afterwa
> rds
> fixme:d3d:WineD3D_ChoosePixelFormat Add OpenGL context recreation support to
> SetDep
> thStencilSurface
>
>
> Best regards
As for this, I tried with a new Nvidia graphics card and will post output next.
Also tried launching @ 16BPP, since it complained, but now I can't use the
keyboard or mouse to interact with the game. @24BPP it works but crashes when
loading the race.
Best regards
--
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=7593
Bug 7593 depends on bug 6162, which changed state.
Bug 6162 Summary: CACLS.exe is unimplemented
http://bugs.winehq.org/show_bug.cgi?id=6162
What |Old Value |New Value
----------------------------------------------------------------------------
Status|NEW |RESOLVED
Resolution| |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=3142
Ken Sharp <kennybobs(a)o2.co.uk> changed:
What |Removed |Added
----------------------------------------------------------------------------
Version|unspecified |20050628
--
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=8421
Nikolay Sivov <bunglehead(a)gmail.com> changed:
What |Removed |Added
----------------------------------------------------------------------------
AssignedTo|wine-bugs(a)winehq.org |bunglehead(a)gmail.com
--- Comment #15 from Nikolay Sivov <bunglehead(a)gmail.com> 2009-08-10 16:07:31 ---
I think I found why does it crash here. Application data/buffer/map isn't ready
at a point when we're requesting dispinfo text for drawing operation. We really
shouldn't draw yet at this point and shouldn't request anything from parent.
Bug is in WM_SETREDRAW handling.
Minimal patch looks like that:
---
diff --git a/dlls/comctl32/listview.c b/dlls/comctl32/listview.c
index a65d832..ebcba6b 100644
--- a/dlls/comctl32/listview.c
+++ b/dlls/comctl32/listview.c
@@ -4334,6 +4334,8 @@ static void LISTVIEW_RefreshReport(LISTVIEW_INFO
*infoPtr, ITERATOR *i, HDC hdc,
TRACE("()\n");
+ if (!is_redrawing(infoPtr)) return;
+
/* figure out what to draw */
rgntype = GetClipBox(hdc, &rcClip);
if (rgntype == NULLREGION) return;
---
It allows browsing of precreated database (first time after creation it works
without patching).
Let's assign it to me, will start with testing on this WM_SETREDRAW.
--
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=625
Ken Sharp <kennybobs(a)o2.co.uk> changed:
What |Removed |Added
----------------------------------------------------------------------------
Summary|lotus organizer can't load |Applications cannot load
|dlls from custom folder |dlls from custom folders
--
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=4781
--- Comment #42 from Juan Lang <juan_lang(a)yahoo.com> 2009-08-10 14:30:30 ---
I spotted these in the log:
fixme:wininet:INET_QueryOption INTERNET_OPTION_PER_CONNECTION_OPTION stub
fixme:wininet:INET_QueryOption Unhandled dwOption 2
fixme:wininet:INET_QueryOption Stub for 67
For me, at least, these cause a problem, since I'm behind a proxy server, and
these stubs always return no proxy. Someone that's not behind a proxy server
might want to give it a try, you might have more luck.
--
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.