RFC - The ProductName registry entry

2011-09-04 Thread Bruno Jesus
Louis Lenders sent the following url patch to fix bug #28065, it was rejected because it fixes the product name so even if you set other version inside winecfg the registry entry will still say Windows XP. http://www.winehq.org/pipermail/wine-patches/2011-August/105414.html I have made a small

Re: WINEDEBUG=warn+heap make test crashes in dsound?

2011-09-04 Thread Michael Stefaniuc
Hi Dan, On 09/03/2011 02:33 AM, Dan Kegel wrote: is this up your alley? You've been looking at dsound recently, iirc. is this a regression? If not I wouldn't bother with it as it looks like it will automatically fix itself during the COM cleanup. But good to know, I'll run the tests with

Undocumented registry settings

2011-09-04 Thread Vitaliy Margolen
Henri, Would you mind documenting recently added registry entries to wined3d on Wiki page http://wiki.winehq.org/UsefulRegistryKeys ? I can't find description of AlwaysOffscreen. Vitaliy.

Re: cmd: Avoid unneeded local variable in WCMD_goto

2011-09-04 Thread Frédéric Delanoy
2011/9/4 Frédéric Delanoy frederic.dela...@gmail.com: ---  programs/cmd/builtins.c |    9 -  1 files changed, 4 insertions(+), 5 deletions(-) Please ignore this patch. The changes it brings are incorporated in another patch (cmd: Avoid rereading batch file for every call/goto executed)

Re: [patch] Fake display interface

2011-09-04 Thread Hin-Tak Leung
--- On Fri, 2/9/11, Jari Vetoniemi mailro...@gmail.com wrote: Hello, I personally hate when applications decide to change my screen resolution without asking me, or some applications just won't run inside window. So I did fake display interface for the winex11.drv. It allows you to

Re: [PATCH 2/4] wined3d: Git rid of the rect checks for present in IWineD3DSurfaceImpl_BltOverride().

2011-09-04 Thread Stefan Dösinger
On Sunday 04 September 2011 22:43:50 Henri Verbeet wrote: These are no longer needed since present can handle these now. I think we can remove the entire special case and just do a blit. This hack is related to the ddraw windowed backbuffer hack you removed a while ago, except that the

Getting Wine's PO files on Launchpad

2011-09-04 Thread Francois Gouget
Launchpad has a PO file translation website. This makes it easier for non-developpers to contribute and review translations. https://translations.launchpad.net/ So what would it take to get Wine's PO files on Launchpad? * Launchpad tracks who translated what string and if we choose the

Re: [1/5] ddraw: Add some NULL pointer tests

2011-09-04 Thread Marvin
Hi, While running your changed tests on Windows, I think I found new failures. Being a bot and all I'm not very good at pattern recognition, so I might be wrong, but could you please double-check? Full results can be found at http://testbot.winehq.org/JobDetails.pl?Key=13949 Your paranoid

Re: [PATCH 2/4] wined3d: Git rid of the rect checks for present in IWineD3DSurfaceImpl_BltOverride().

2011-09-04 Thread Henri Verbeet
On 5 September 2011 00:03, Stefan Dösinger stefandoesin...@gmx.at wrote: On Sunday 04 September 2011 22:43:50 Henri Verbeet wrote: These are no longer needed since present can handle these now. I think we can remove the entire special case and just do a blit. That's not what the comment says.

Re: cmd: Avoid rereading batch file for every call/goto executed (try 2)

2011-09-04 Thread Octavian Voicu
2011/9/5 Frédéric Delanoy frederic.dela...@gmail.com: +        static WCHAR string[MAX_PATH]; Why make this static? It's only a temporary buffer and it's only used once, when building the cache. Octavian