https://bugs.winehq.org/show_bug.cgi?id=40833
Bug ID: 40833
Summary: Batman: Arkham Origins Blackgate no sound during
gameplay (except cutscenes)
Product: Wine
Version: 1.9.12
Hardware: x86-64
OS: Linux
Status: NEW
Severity: minor
Priority: P2
Component: xaudio2
Assignee: wine-bugs(a)winehq.org
Reporter: andrey.goosev(a)gmail.com
CC: aeikum(a)codeweavers.com
Distribution: ---
Created attachment 54794
--> https://bugs.winehq.org/attachment.cgi?id=54794
log
Using native xaudio2_7 is a workaround.
wine-1.9.12-161-g754c681
--
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.
https://bugs.winehq.org/show_bug.cgi?id=40756
Bug ID: 40756
Summary: GOG Galaxy crashes with unimplemented function
api-ms-win-crt-heap-l1-1-0.dll._calloc_base
Product: Wine
Version: 1.9.11
Hardware: x86-64
URL: http://cdn.gog.com/open/galaxy/client/setup_galaxy_1.1
.11.53.exe
OS: Linux
Status: NEW
Keywords: download
Severity: minor
Priority: P2
Component: api-ms-win-*
Assignee: wine-bugs(a)winehq.org
Reporter: andrey.goosev(a)gmail.com
Distribution: ---
wine: Call from 0x7b43b24c to unimplemented function
api-ms-win-crt-heap-l1-1-0.dll._calloc_base, aborting
fixme:vcruntime:__telemetry_main_return_trigger (0xb70000)
err:module:attach_process_dlls "MSVCP140.dll" failed to initialize, aborting
vcrun2015 installed
Set to native,builtin:
> msvcp140
> api-ms-win-crt-locale-l1-1-0
> ucrtbase
--
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.
https://bugs.winehq.org/show_bug.cgi?id=40745
Bug ID: 40745
Summary: Python 3.5.1 interpreter crashes, needs
_set_thread_local_invalid_parameter_handler
Product: Wine
Version: 1.9.11
Hardware: x86
OS: Linux
Status: NEW
Severity: normal
Priority: P2
Component: api-ms-win-*
Assignee: wine-bugs(a)winehq.org
Reporter: alexhenrie24(a)gmail.com
Distribution: ---
Created attachment 54649
--> https://bugs.winehq.org/attachment.cgi?id=54649
Backtrace
To reproduce:
1. Download
https://www.python.org/ftp/python/3.5.1/python-3.5.1-embed-win32.zip
2. Unzip python-3.5.1-embed-win32.zip
3. Run `wine python.exe`
$ sha1sum python-3.5.1-embed-win32.zip
240dd2da695fea58847b9fbc5420d31f75f275ce python-3.5.1-embed-win32.zip
--
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.
https://bugs.winehq.org/show_bug.cgi?id=39842
Bug ID: 39842
Summary: skype for windows doesn't work
Product: Wine
Version: unspecified
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: shentino(a)gmail.com
Distribution: ---
Created attachment 53186
--> https://bugs.winehq.org/attachment.cgi?id=53186
screenshot of skype not working. I have internet just fine (hello bugzilla)
Skype for windows doesn't work.
The install program spewed out a bunch of debug messages, and the skype that
was installed can't connect to the internet.
--
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.
https://bugs.winehq.org/show_bug.cgi?id=40770
Bug ID: 40770
Summary: Nvidia GeForce GT 730 not recognized properly
Product: Wine
Version: 1.9.12
Hardware: x86
OS: Linux
Status: NEW
Severity: enhancement
Priority: P2
Component: directx-d3d
Assignee: wine-bugs(a)winehq.org
Reporter: gyebro69(a)gmail.com
Distribution: ---
I have a GeForce GT 730 card which is based on the Kepler architecture (GK208).
The card is detected as a
GeForce GTX 470 in Wine.
lspci output:
02:00.0 VGA compatible controller [0300]: NVIDIA Corporation GK208 [GeForce GT
730] [10de:1287] (rev a1) (prog-if 00 [VGA controller])
I sent a patch to correct the issue:
https://www.winehq.org/pipermail/wine-patches/2016-June/151076.html
I tested and confirmed that games such as Skyrim, Morrowind, Fallout 3 and
games based on the Unity engine recognize the card correctly with the patch.
Thanks for your attention.
--
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=18745
Summary: Wine should support MEM_LARGE_PAGES and related
interfaces for large pages & variable page sizes
Product: Wine
Version: 1.1.22
Platform: PC
OS/Version: All
Status: UNCONFIRMED
Severity: normal
Priority: P3
Component: kernel32
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: trisk-winehq(a)forkgnu.org
The ability to allocate large pages can improve the performance of applications
with densely populated address spaces. The large page interfaces on Windows
were introduced in Windows Server 2003. However, due to limitations in the NT
VM, large pages are always pinned in memory (not pageable) and become scarce
due to excessive fragmentation. Wine has the advantage of running on platforms
with better support for large pages.
Because the memory is normally pinned, the process must have
SeLockMemoryPrivilege on Windows.
The new interfaces are:
MEM_LARGE_PAGES type for VirtualAlloc (NtAllocateVirtualMemory)
(http://msdn.microsoft.com/en-us/library/aa366720%28VS.85%29.aspx)
SEC_LARGE_PAGES flag for
http://msdn.microsoft.com/en-us/library/aa366543%28VS.85%29.aspx
GetLargePageMinimum
(http://msdn.microsoft.com/en-us/library/aa366568%28VS.85%29.aspx)
/***********************************************************************
* GetLargePageMinimum (KERNEL32.@)
*
* Get the minimum size of a large page.
*
* RETURNS
* Size: Success
* 0: Failure
*/
SIZE_T WINAPI GetLargePageMinimum(void)
The allocated regions must be aligned to the minimum size and MEM_COMMIT must
also be set, or NtAllocateVirtualMemory should return STATUS_INVALID_PARAMETER.
I'm opening this bug to keep notes for my own implementation, although anyone
should feel free to jump in.
--
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.
https://bugs.winehq.org/show_bug.cgi?id=40562
Bug ID: 40562
Summary: AkelPad: [ToolBar plugin] tooltips for toolbar buttons
have some extra text
Product: Wine
Version: 1.9.5
Hardware: x86-64
URL: https://sourceforge.net/projects/akelpad/files/AkelPad
%204/4.9.7/x64/
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: godevilove(a)ya.ru
Distribution: Debian
OS: Debian 8.4 x64
Wine: wine-development (multiarch) 1.9.5-3~bpo8+1 (from jessie-backports)
AkelPad: 4.9.7 (x64)
STR:
1. Install AkelPad using the installer.
2. Run AkelPad and open 'Options > Plugins' (or hit Alt+P) and check there
'ToolBar::Main' checkbox + double click that line to run that plugin
immediately. Now there should appear a new toolbar in AkelPad's window.
3. Hover the cursor over some buttons like 'Save' button. There should appear a
tooltip with some text.
Expected Result:
Text of the tooltip should be just 'Save'.
Actual Result:
Text of the tooltip is 'Save<square>Ctrl+S' where '<square>' represents a
rectangle symbol, like the one that usually shows up in browsers when there's
no icon for that char in the specified font. All other buttons also have
tooltips with text in '<text><square><shortcut>' format instead of just
'<text>'.
--
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.
https://bugs.winehq.org/show_bug.cgi?id=39911
Bug ID: 39911
Summary: dxd9 PresentationInterval not propagated on device
Reset
Product: Wine
Version: 1.9.0
Hardware: x86
OS: Mac OS X
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: directx-d3d
Assignee: wine-bugs(a)winehq.org
Reporter: zakk(a)rsdio.com
Background: The steam game XIIZeal relies on vsync to run the game engine
timing; under wine (on OSX) fullscreen runs at an unlimited speed, while on
windows it runs at the refresh rate of your display.
Looking into this this is the sequence of events as best I can tell:
It creates a D3D9 Device with PresentationInterval set to
D3DPRESENT_INTERVAL_IMMEDIATE
Wine creates the device, swap chain, OpenGL context and eventually calls
wglSwapInterval(0).
Then the game does a device Reset, in that reset the PresentationInterval is
set to D3DPRESENT_INTERVAL_ONE. Wine does not ever call wglSwapInterval(1)
after this reset, thus the framerate is never limited.
If I hack up wined3d_device_reset() to call wglSwapInterval() based on the
PresentationInterval the game behaves as expected. However I don't know if this
is the best way to approach this issue.
--
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.
https://bugs.winehq.org/show_bug.cgi?id=38102
Bug ID: 38102
Summary: Process Hacker 2.x needs
winsta.dll.WinStationEnumerateW
Product: Wine
Version: 1.7.0
Hardware: x86
URL: http://processhacker.sourceforge.net/downloads.php
OS: Linux
Status: NEW
Keywords: download, source
Severity: normal
Priority: P2
Component: ntdll
Assignee: wine-bugs(a)winehq.org
Reporter: austinenglish(a)gmail.com
CC: abolte(a)systemsaviour.com, dmex04(a)gmail.com,
teras(a)luukku.com, winebug(a)mailinator.com
Depends on: 34318, 34317
Distribution: ---
You'll need winetricks comctl32 to work around bug 34465.
I used the portable binaries. Extract, run the x86 version, then click the
users tab. Boom.
austin@debian-home:~$ sha1sum processhacker-2.33-bin.zip
2738c909fa6b37a22a4aa256e5d7e733449b905e processhacker-2.33-bin.zip
austin@debian-home:~$ du -h processhacker-2.33-bin.zip
2.7M processhacker-2.33-bin.zip
austin@debian-home:~$ wine --version
wine-1.7.36-28-ga679cae
--
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.