http://bugs.winehq.org/show_bug.cgi?id=24374
Summary: Driller fails to run
Product: Wine
Version: 1.3.2
Platform: x86
URL: http://download.ovinebydesign.com/driller/download.asp
x
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: gyebro69(a)gmail.com
Created an attachment (id=30720)
--> (http://bugs.winehq.org/attachment.cgi?id=30720)
terminal output
Driller is a freeware remake of a classic 3D adventure game, which was quite
popular in the 8-bit computer era.
The standalone executable Driller.exe fails to run in Wine, showing only a
messagebox, saying:
'Error! User lib not found', then it quits.
I can't verify how it behaves under a native Windows environment because I have
no Windows installed. According to the developer's page the game is Vista
compatible.
I'm not sure it has something to do with the issue, but the Driller.exe is
packed/protected(?) by Molebox Ultra. That is some kind of virtualization which
helps creating portable applications.
Fedora 13
Nvidia 7600 / driver 256.53
--
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=40694
Bug ID: 40694
Summary: Invalid behavior of "C: && echo haha" or "C: & echo
haha"
Product: Wine
Version: 1.9.10
Hardware: x86
OS: Linux
Status: NEW
Keywords: download, source, testcase
Severity: normal
Priority: P2
Component: cmd
Assignee: wine-bugs(a)winehq.org
Reporter: fracting(a)gmail.com
Distribution: ---
On Windows, all of "C: && echo haha", "C: || echo haha", "C: & echo haha" works
fine.
On Wine, this kinds of command line generates an error of "Can't recognize 'C:
' as an internal or external command, or batch script."
Found by neovim developer: https://tea-ci.org/equalsraf/neovim/39
--
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=18164
Summary: dlls/iphlpapi/ifenum.c: compiler warnings
Product: Wine
Version: 1.1.19
Platform: PC
OS/Version: NetBSD
Status: NEW
Keywords: source
Severity: minor
Priority: P2
Component: build-env
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: austinenglish(a)gmail.com
gcc -c -I. -I. -I../../include -I../../include -D__WINESRC__ -D_REENTRANT
-fPIC -Wall -pipe -fno-strict-aliasing -Wdeclaration-after-statement
-Wwrite-strings -Wpointer-arith -I/usr/pkg/include -I/usr/include
-I/usr/X11R7/include/freetype2 -I/usr/X11R7/include -O2 -I/usr/pkg/include
-I/usr/include -I/usr/X11R7/include/freetype2 -I/usr/X11R7/include -o
./ifenum.o ./ifenum.c
./ifenum.c: In function 'enumIPAddresses':
./ifenum.c:693: warning: pointer of type 'void *' used in arithmetic
./ifenum.c:693: warning: comparison of distinct pointer types lacks a cast
./ifenum.c: In function 'getIPAddrTable':
./ifenum.c:754: warning: pointer of type 'void *' used in arithmetic
./ifenum.c:754: warning: comparison of distinct pointer types lacks a cast
No patch for this one yet. Won't complain if someone beats me to it ;-).
--
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=27497
Summary: Regedit mangles registry keys containing embedded
NULLs
Product: Wine
Version: 1.3.22
Platform: x86
URL: http://www.gog.com/en/gamecard/sacrifice
OS/Version: Linux
Status: NEW
Severity: minor
Priority: P2
Component: programs
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: austinenglish(a)gmail.com
Created an attachment (id=35155)
--> (http://bugs.winehq.org/attachment.cgi?id=35155)
raw file
Noticed this while messing around with Sacrifice
(http://www.gog.com/en/gamecard/sacrifice).
The game stores a few keys with embedded NULLs, apparently all the ones that
store string values (dword/hex values aren't affected).
Looking at the raw registry (system.reg) shows the values fine:
"Graphic detail"=dword:00000000
"IP address"="\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"
"Key repeat delay"=dword:0000000a
"Key repeat start"=dword:00000032
but if I export the key with wine's regedit, it mangles them:
"Graphic detail"=dword:00000000
"IP address"=""Key repeat delay"=dword:0000000a
"Key repeat start"=dword:00000032
notice how a quote goes missing along with the newline. The game really likes
those newlines. If I remove them and rerun the game, then adjust its settings,
it adds them back.
I'll attach a text file with the raw registry, along with what I get when
exporting.
--
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=40742
Bug ID: 40742
Summary: cmd.exe: buffer overflow while parsing qualifiers
Product: Wine
Version: 1.9.11
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: cmd
Assignee: wine-bugs(a)winehq.org
Reporter: jbb.rose(a)yahoo.com
Distribution: ---
Created attachment 54646
--> https://bugs.winehq.org/attachment.cgi?id=54646
Batch file which triggers the problem
WCMD_parse() copies command qualifiers into the quals[] array. The
array is MAX_PATH (260) characters long, but the input command can be
up to MAXSTRING (8192) characters long. This can lead to buffer
overflows and crashes if a command has many qualifiers.
The attached try.bat file, taken from an actual command generated by
a cross-build system, reliably crashes wine 1.9.11 as built on SLES11SP2.
Increasing the size of quals[] to MAXSTRING characters fixes the problem.
--
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=30713
Bug #: 30713
Summary: 64 bit wine installs 64 bit mfc100.dll to syswow64
Product: Wine
Version: 1.4
Platform: x86
OS/Version: Linux
Status: NEW
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: dank(a)kegel.com
Classification: Unclassified
Downloading and running
http://download.microsoft.com/download/A/8/0/A80747C3-41BD-45DF-B505-E9710D…
(see http://www.microsoft.com/en-us/download/details.aspx?id=13523 )
with WINEARCH=win64 does install mfc100.dll... but into c:\windows\syswow64,
which seems wrong.
This was with wine-1.4. I'll test again with current wine once I figure out
how to build it.
--
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=38849
Bug ID: 38849
Summary: valgrind shows an unitialized variable in
programs/cmd/tests/batch.c:WCMD_assoc
Product: Wine
Version: 1.7.46
Hardware: x86
OS: Linux
Status: NEW
Keywords: download, source, testcase, valgrind
Severity: normal
Priority: P2
Component: cmd
Assignee: wine-bugs(a)winehq.org
Reporter: austinenglish(a)gmail.com
Distribution: ---
../../../tools/runtest -q -P wine -T ../../.. -M cmd.exe -p cmd.exe_test.exe.so
batch && touch batch.ok
==13413== Conditional jump or move depends on uninitialised value(s)
==13413== at 0x7B841A61: strlenW (unicode.h:200)
==13413== by 0x7B841ED4: format_insert (format_msg.c:160)
==13413== by 0x7B842936: format_message (format_msg.c:391)
==13413== by 0x7B843087: FormatMessageW (format_msg.c:617)
==13413== by 0x4ADE451: WCMD_output_stderr (wcmdmain.c:166)
==13413== by 0x4ADB08E: WCMD_assoc (builtins.c:4759)
==13413== by 0x4AE18EB: WCMD_execute (wcmdmain.c:1592)
==13413== by 0x4AE30AB: WCMD_process_commands (wcmdmain.c:2292)
==13413== by 0x4ACDFD6: WCMD_batch (batch.c:95)
==13413== by 0x4AE08C1: WCMD_run_program (wcmdmain.c:1185)
==13413== by 0x4AE1979: WCMD_execute (wcmdmain.c:1616)
==13413== by 0x4AE30AB: WCMD_process_commands (wcmdmain.c:2292)
==13413== by 0x4AE3E90: wmain (wcmdmain.c:2588)
==13413== by 0x4AE431F: __wine_spec_exe_wentry (exe_wentry.c:36)
==13413== by 0x7B860807: ??? (process.c:1052)
==13413== by 0x7B860949: start_process (process.c:1104)
==13413== by 0x7BC81E27: ??? (signal_i386.c:2682)
==13413== by 0x7BC81E6E: call_thread_func (signal_i386.c:2741)
==13413== by 0x7BC81E05: ??? (signal_i386.c:2682)
==13413== by 0x7BC57806: start_process (loader.c:2868)
==13413== Uninitialised value was created by a stack allocation
==13413== at 0x4ADAB4F: WCMD_assoc (builtins.c:4620)
==13413==
==13413== Conditional jump or move depends on uninitialised value(s)
==13413== at 0x7B841AA6: strcpyW (unicode.h:207)
==13413== by 0x7B841F13: format_insert (format_msg.c:161)
==13413== by 0x7B842936: format_message (format_msg.c:391)
==13413== by 0x7B843087: FormatMessageW (format_msg.c:617)
==13413== by 0x4ADE451: WCMD_output_stderr (wcmdmain.c:166)
==13413== by 0x4ADB08E: WCMD_assoc (builtins.c:4759)
==13413== by 0x4AE18EB: WCMD_execute (wcmdmain.c:1592)
==13413== by 0x4AE30AB: WCMD_process_commands (wcmdmain.c:2292)
==13413== by 0x4ACDFD6: WCMD_batch (batch.c:95)
==13413== by 0x4AE08C1: WCMD_run_program (wcmdmain.c:1185)
==13413== by 0x4AE1979: WCMD_execute (wcmdmain.c:1616)
==13413== by 0x4AE30AB: WCMD_process_commands (wcmdmain.c:2292)
==13413== by 0x4AE3E90: wmain (wcmdmain.c:2588)
==13413== by 0x4AE431F: __wine_spec_exe_wentry (exe_wentry.c:36)
==13413== by 0x7B860807: ??? (process.c:1052)
==13413== by 0x7B860949: start_process (process.c:1104)
==13413== by 0x7BC81E27: ??? (signal_i386.c:2682)
==13413== by 0x7BC81E6E: call_thread_func (signal_i386.c:2741)
==13413== by 0x7BC81E05: ??? (signal_i386.c:2682)
==13413== by 0x7BC57806: start_process (loader.c:2868)
==13413== Uninitialised value was created by a stack allocation
==13413== at 0x4ADAB4F: WCMD_assoc (builtins.c:4620)
==13413==
==13413== Conditional jump or move depends on uninitialised value(s)
==13413== at 0x7B84296B: format_message (format_msg.c:392)
==13413== by 0x7B843087: FormatMessageW (format_msg.c:617)
==13413== by 0x4ADE451: WCMD_output_stderr (wcmdmain.c:166)
==13413== by 0x4ADB08E: WCMD_assoc (builtins.c:4759)
==13413== by 0x4AE18EB: WCMD_execute (wcmdmain.c:1592)
==13413== by 0x4AE30AB: WCMD_process_commands (wcmdmain.c:2292)
==13413== by 0x4ACDFD6: WCMD_batch (batch.c:95)
==13413== by 0x4AE08C1: WCMD_run_program (wcmdmain.c:1185)
==13413== by 0x4AE1979: WCMD_execute (wcmdmain.c:1616)
==13413== by 0x4AE30AB: WCMD_process_commands (wcmdmain.c:2292)
==13413== by 0x4AE3E90: wmain (wcmdmain.c:2588)
==13413== by 0x4AE431F: __wine_spec_exe_wentry (exe_wentry.c:36)
==13413== by 0x7B860807: ??? (process.c:1052)
==13413== by 0x7B860949: start_process (process.c:1104)
==13413== by 0x7BC81E27: ??? (signal_i386.c:2682)
==13413== by 0x7BC81E6E: call_thread_func (signal_i386.c:2741)
==13413== by 0x7BC81E05: ??? (signal_i386.c:2682)
==13413== by 0x7BC57806: start_process (loader.c:2868)
==13413== by 0x4018FB4: ??? (port.c:60)
==13413== Uninitialised value was created by a stack allocation
==13413== at 0x4ADAB4F: WCMD_assoc (builtins.c:4620)
==13413==
==13413== Conditional jump or move depends on uninitialised value(s)
==13413== at 0x7B841A61: strlenW (unicode.h:200)
==13413== by 0x7B8430A2: FormatMessageW (format_msg.c:621)
==13413== by 0x4ADE451: WCMD_output_stderr (wcmdmain.c:166)
==13413== by 0x4ADB08E: WCMD_assoc (builtins.c:4759)
==13413== by 0x4AE18EB: WCMD_execute (wcmdmain.c:1592)
==13413== by 0x4AE30AB: WCMD_process_commands (wcmdmain.c:2292)
==13413== by 0x4ACDFD6: WCMD_batch (batch.c:95)
==13413== by 0x4AE08C1: WCMD_run_program (wcmdmain.c:1185)
==13413== by 0x4AE1979: WCMD_execute (wcmdmain.c:1616)
==13413== by 0x4AE30AB: WCMD_process_commands (wcmdmain.c:2292)
==13413== by 0x4AE3E90: wmain (wcmdmain.c:2588)
==13413== by 0x4AE431F: __wine_spec_exe_wentry (exe_wentry.c:36)
==13413== by 0x7B860807: ??? (process.c:1052)
==13413== by 0x7B860949: start_process (process.c:1104)
==13413== by 0x7BC81E27: ??? (signal_i386.c:2682)
==13413== by 0x7BC81E6E: call_thread_func (signal_i386.c:2741)
==13413== by 0x7BC81E05: ??? (signal_i386.c:2682)
==13413== by 0x7BC57806: start_process (loader.c:2868)
==13413== by 0x4018FB4: ??? (port.c:60)
==13413== Uninitialised value was created by a stack allocation
==13413== at 0x4ADAB4F: WCMD_assoc (builtins.c:4620)
==13413==
==13413== Conditional jump or move depends on uninitialised value(s)
==13413== at 0x7B841AA6: strcpyW (unicode.h:207)
==13413== by 0x7B843144: FormatMessageW (format_msg.c:633)
==13413== by 0x4ADE451: WCMD_output_stderr (wcmdmain.c:166)
==13413== by 0x4ADB08E: WCMD_assoc (builtins.c:4759)
==13413== by 0x4AE18EB: WCMD_execute (wcmdmain.c:1592)
==13413== by 0x4AE30AB: WCMD_process_commands (wcmdmain.c:2292)
==13413== by 0x4ACDFD6: WCMD_batch (batch.c:95)
==13413== by 0x4AE08C1: WCMD_run_program (wcmdmain.c:1185)
==13413== by 0x4AE1979: WCMD_execute (wcmdmain.c:1616)
==13413== by 0x4AE30AB: WCMD_process_commands (wcmdmain.c:2292)
==13413== by 0x4AE3E90: wmain (wcmdmain.c:2588)
==13413== by 0x4AE431F: __wine_spec_exe_wentry (exe_wentry.c:36)
==13413== by 0x7B860807: ??? (process.c:1052)
==13413== by 0x7B860949: start_process (process.c:1104)
==13413== by 0x7BC81E27: ??? (signal_i386.c:2682)
==13413== by 0x7BC81E6E: call_thread_func (signal_i386.c:2741)
==13413== by 0x7BC81E05: ??? (signal_i386.c:2682)
==13413== by 0x7BC57806: start_process (loader.c:2868)
==13413== by 0x4018FB4: ??? (port.c:60)
==13413== Uninitialised value was created by a stack allocation
==13413== at 0x4ADAB4F: WCMD_assoc (builtins.c:4620)
==13413==
--
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=40271
Bug ID: 40271
Summary: Can't start UPlay: "Connection Lost" error
Product: Wine
Version: 1.9.4
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: major
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: fry.kun(a)gmail.com
Distribution: Fedora
Created attachment 53907
--> https://bugs.winehq.org/attachment.cgi?id=53907
WINEDEBUG=+winsock,+secur32
Fedora package: wine-1.9.4-1.fc23.x86_64
wine --version: wine-1.9.4 (Staging)
When starting UPlay in online mode (have to log in), it fails with a message
"Connection lost"
Several weeks ago it was working just fine
Let me know if you need me to try bisecting wine versions to narrow it down or
the attached log is enough..
--
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=37780
Bug ID: 37780
Summary: After running a bash script from cmd, no prompt is
printed
Product: Wine
Version: unspecified
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: cmd
Assignee: wine-bugs(a)winehq.org
Reporter: gm89(a)hotmail.it
Distribution: ---
If I run a bash script from wine's cmd, after execution the prompt is not
printed.
I believe this is the cause of an hang in my use case, I'm trying to interface
a windows program with my android phone by making it use the native adb binary;
the trick I used was to replace the provided "adb.exe" with a similarly named
bash script with this content:
#!/bin/bash
/usr/bin/adb $*
If I manually call adb.exe from cmd, the output of commands is correct but no
prompt is printed afterwards.
Tested with wine 1.7.33 under ubuntu 14.04.
--
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=40944
Bug ID: 40944
Summary: Impossible to run Steam versions of classic DOOM games
Product: Wine
Version: 1.9.14
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: blocker
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: thomthomthom(a)ymail.com
Distribution: ---
Running DOOM II: Hell on Earth is impossible. The DOSBOX console window appears
and the screen freezes without opening the game. I need to kill all wine
processes and dosbox in order to continue. The same happens for all classic
DOOM versions on Steam.
Here's the output for DOOM II: Hell on Earth:
anoob@anoob:~/.wine/drive_c/Program Files/Steam$ wine Steam.exe
fixme:ver:GetCurrentPackageId (0x32e460 (nil)): stub
[2016-07-10 13:24:12] Startup - updater built Jul 8 2016 14:45:17
[2016-07-10 13:24:12] Verifying installation...
[2016-07-10 13:24:13] Verification complete
fixme:advapi:EventRegister {47a9201e-73b0-42ce-9821-7e134361bc6f}, 0x3f006700,
0x3f040cf8, 0x3f040cf0
fixme:advapi:EventRegister {58a9201e-73b0-42ce-9821-7e134361bc70}, 0x3f006700,
0x3f040d30, 0x3f040d28
fixme:advapi:EventRegister {3fa9201e-73b0-43fe-9821-7e145359bc6f}, 0x3f006700,
0x3f040cc0, 0x3f040cb8
fixme:advapi:EventRegister {1432afee-73b0-42ce-9821-7e134361b433}, 0x3f006700,
0x3f040d68, 0x3f040d60
fixme:advapi:EventRegister {4372afee-73b0-42ce-9821-7e134361b519}, 0x3f006700,
0x3f040da0, 0x3f040d98
fixme:process:SetProcessShutdownParameters (00000100, 00000000): partial stub.
fixme:imm:ImmGetOpenStatus (0x1e7698): semi-stub
fixme:ver:GetCurrentPackageId (0x32e30c (nil)): stub
err:winediag:SECUR32_initNTLMSP ntlm_auth was not found or is outdated. Make
sure that ntlm_auth >= 3.0.25 is in your path. Usually, you can find it in the
winbind package of your distribution.
fixme:heap:RtlSetHeapInformation 0x110000 0 0x33fcec 4 stub
fixme:process:SetProcessDEPPolicy (3): stub
fixme:heap:RtlSetHeapInformation (nil) 1 (nil) 0 stub
fixme:advapi:EventRegister {d2d578d9-2936-45b6-a09f-30e32715f42d}, 0x100de000,
0x12e0b680, 0x12f6acb0
fixme:imm:ImmDisableTextFrameService Stub
fixme:nls:GetThreadPreferredUILanguages 00000038, 0x33f7a4, (nil) 0x33f7a8
fixme:nls:get_dummy_preferred_ui_language (0x38 0x33f7a4 (nil) 0x33f7a8)
returning a dummy value (current locale)
fixme:nls:GetThreadPreferredUILanguages 00000038, 0x33f7a4, 0x1514a0 0x33f7a8
fixme:nls:get_dummy_preferred_ui_language (0x38 0x33f7a4 0x1514a0 0x33f7a8)
returning a dummy value (current locale)
IPC client is in my process, could/should be using an in-process
pipe.fixme:winsock:WSALookupServiceBeginW (0x33f4b8 0x00000ff0 0x33f4f4) Stub!
[0710/132413:ERROR:network_change_notifier_win.cc(170)] WSALookupServiceBegin
failed with: 8
fixme:iphlpapi:NotifyAddrChange (Handle 0x33f638, overlapped 0x152524): stub
fixme:win:RegisterDeviceNotificationW (hwnd=0x100a8,
filter=0x33f60c,flags=0x00000000) returns a fake device notification handle!
fixme:win:RegisterDeviceNotificationW (hwnd=0x100a8,
filter=0x33f60c,flags=0x00000000) returns a fake device notification handle!
err:winediag:SECUR32_initNTLMSP ntlm_auth was not found or is outdated. Make
sure that ntlm_auth >= 3.0.25 is in your path. Usually, you can find it in the
winbind package of your distribution.
fixme:ver:GetCurrentPackageId (0x30e590 (nil)): stub
fixme:win:EnumDisplayDevicesW ((null),0,0x33f114,0x00000000), stub!
fixme:win:RegisterDeviceNotificationA (hwnd=0x20046,
filter=0xe35e4e8,flags=0x00000004) returns a fake device notification handle!
fixme:ver:GetCurrentPackageId (0x303dfa4 (nil)): stub
fixme:wbemprox:wbem_locator_ConnectServer unsupported flags
fixme:wbemprox:client_security_SetBlanket 0x7c8b1c68, 0x402bf20, 10, 0, (null),
3, 3, (nil), 0x00000000
fixme:wbemprox:client_security_Release 0x7c8b1c68
fixme:wbemprox:wbem_locator_ConnectServer unsupported flags
fixme:wbemprox:client_security_SetBlanket 0x7c8b1c68, 0x3f4a350, 10, 0, (null),
3, 3, (nil), 0x00000000
fixme:wbemprox:client_security_Release 0x7c8b1c68
fixme:mountmgr:harddisk_ioctl The DISK_PARTITION_INFO and DISK_DETECTION_INFO
structures will not be filled
fixme:mountmgr:harddisk_ioctl The DISK_PARTITION_INFO and DISK_DETECTION_INFO
structures will not be filled
fixme:wbemprox:enum_class_object_Next timeout not supported
fixme:mountmgr:harddisk_ioctl The DISK_PARTITION_INFO and DISK_DETECTION_INFO
structures will not be filled
fixme:mountmgr:harddisk_ioctl The DISK_PARTITION_INFO and DISK_DETECTION_INFO
structures will not be filled
ALSA lib conf.c:3357:(snd_config_hooks_call) Cannot open shared library
libasound_module_conf_pulse.so
ALSA lib pcm.c:2266:(snd_pcm_open_noupdate) Unknown PCM default
ALSA lib pcm_dsnoop.c:606:(snd_pcm_dsnoop_open) unable to open slave
fixme:ver:GetCurrentPackageId (0x33fb30 (nil)): stub
fixme:iphlpapi:NotifyAddrChange (Handle 0x1e6046c, overlapped 0x1e60470): stub
fixme:dwrite:dwritefactory_CreateMonitorRenderingParams (0x1): monitor setting
ignored
Unable to remove c:\program files\steam\CONFIG\SteamAppData.vdf!
err:ole:CoGetClassObject class {77f10cf0-3db5-4966-b520-b7c54fd35ed6} not
registered
err:ole:CoGetClassObject no class object {77f10cf0-3db5-4966-b520-b7c54fd35ed6}
could be created for context 0x1
fixme:imm:ImmReleaseContext (0x100b6, 0x403d9d8): stub
fixme:ntdll:NtLockFile I/O completion on lock not implemented yet
fixme:ntdll:NtLockFile I/O completion on lock not implemented yet
fixme:win:RegisterDeviceNotificationA (hwnd=0x100d2,
filter=0x32e488,flags=0x00000004) returns a fake device notification handle!
fixme:win:EnumDisplayDevicesW ((null),0,0x32d974,0x00000000), stub!
fixme:win:EnumDisplayDevicesW ((null),0,0x32dafc,0x00000000), stub!
fixme:win:EnumDisplayDevicesW ((null),1,0x32dafc,0x00000000), stub!
fixme:winhttp:get_system_proxy_autoconfig_url no support on this platform
fixme:winhttp:WinHttpDetectAutoProxyConfigUrl discovery via DHCP not supported
fixme:winhttp:get_system_proxy_autoconfig_url no support on this platform
IPC client is in my process, could/should be using an in-process
pipe.fixme:hnetcfg:fw_apps_get__NewEnum 0x43b0ee0, 0x10d3e4b0
fixme:hnetcfg:fw_app_put_ProcessImageFileName 0x400b050, L"C:\\Program
Files\\Steam\\steam.exe"
fixme:hnetcfg:fw_app_put_Name 0x400b050, L"Steam"
fixme:hnetcfg:fw_app_put_Enabled 0x400b050, -1
fixme:hnetcfg:fw_apps_Add 0x43b0ee0, 0x400b050
err:ole:CoGetClassObject class {e2b3c97f-6ae1-41ac-817a-f6f92166d7dd} not
registered
err:ole:CoGetClassObject no class object {e2b3c97f-6ae1-41ac-817a-f6f92166d7dd}
could be created for context 0x1
fixme:win:RegisterDeviceNotificationW (hwnd=0x1012a,
filter=0x119ee93c,flags=0x00000000) returns a fake device notification handle!
fixme:win:UnregisterDeviceNotification (handle=0xcafeaffe), STUB!
fixme:win:RegisterDeviceNotificationW (hwnd=0x2012a,
filter=0x119ee93c,flags=0x00000000) returns a fake device notification handle!
fixme:win:EnumDisplayDevicesW ((null),0,0x32e464,0x00000000), stub!
fixme:winhttp:get_system_proxy_autoconfig_url no support on this platform
fixme:appbar:handle_appbarmessage SHAppBarMessage(ABM_GETTASKBARPOS,
hwnd=(nil)): stub
fixme:appbar:SHAppBarMessage unknown msg: 4
fixme:appbar:handle_appbarmessage SHAppBarMessage(ABM_GETSTATE): stub
fixme:appbar:handle_appbarmessage SHAppBarMessage(ABM_GETAUTOHIDEBAR,
hwnd=(nil), edge=3): stub
fixme:appbar:handle_appbarmessage SHAppBarMessage(ABM_GETAUTOHIDEBAR,
hwnd=(nil), edge=1): stub
fixme:appbar:handle_appbarmessage SHAppBarMessage(ABM_GETAUTOHIDEBAR,
hwnd=(nil), edge=0): stub
fixme:appbar:handle_appbarmessage SHAppBarMessage(ABM_GETAUTOHIDEBAR,
hwnd=(nil), edge=2): stub
fixme:winhttp:get_system_proxy_autoconfig_url no support on this platform
fixme:winhttp:get_system_proxy_autoconfig_url no support on this platform
Refresh rate: 15
Refresh rate: 15
Refresh rate: 15
Refresh rate: 1
Refresh rate: 1
Refresh rate: 1
err:winediag:SECUR32_initNTLMSP ntlm_auth was not found or is outdated. Make
sure that ntlm_auth >= 3.0.25 is in your path. Usually, you can find it in the
winbind package of your distribution.
fixme:heap:RtlSetHeapInformation 0x110000 0 0x33fcec 4 stub
fixme:ver:GetCurrentPackageId (0x33fb30 (nil)): stub
fixme:mfplat:MFStartup (65648, 1): stub
fixme:process:SetProcessDEPPolicy (3): stub
fixme:heap:RtlSetHeapInformation (nil) 1 (nil) 0 stub
fixme:advapi:EventRegister {d2d578d9-2936-45b6-a09f-30e32715f42d}, 0x100de000,
0x12e0b680, 0x12f6acb0
fixme:gdi:GdiInitializeLanguagePack stub
fixme:ntdll:NtQuerySection (0x30,0,0x33f178,0x00000010,(nil)) stub!
fixme:ntdll:NtQuerySection (0x30,0,0x33f170,0x00000010,(nil)) stub!
Refresh rate: 1
Refresh rate: 1
Refresh rate: 1
fixme:winhttp:get_system_proxy_autoconfig_url no support on this platform
fixme:winhttp:get_system_proxy_autoconfig_url no support on this platform
fixme:win:EnumDisplayDevicesW ((null),0,0x23ff184,0x00000000), stub!
fixme:win:EnumDisplayDevicesW ((null),0,0x23ff084,0x00000000), stub!
IPC client is in my process, could/should be using an in-process pipe.ALSA lib
conf.c:3357:(snd_config_hooks_call) Cannot open shared library
libasound_module_conf_pulse.so
ALSA lib pcm.c:2266:(snd_pcm_open_noupdate) Unknown PCM default
ALSA lib pcm_dsnoop.c:606:(snd_pcm_dsnoop_open) unable to open slave
fixme:ddraw:ddraw_surface7_Flip Ignoring flags 0x1.
Killed
I've find the file /home/anoob/.wine/drive_c/Program
Files/Steam/steamapps/common/Doom 2/doom2 + mouse.bat:
.\base\dosbox -conf .\base\doom2m.conf -fullscreen -exit
exit
Then I've tried to call it directly:
anoob@anoob:~/.wine/drive_c/Program Files/Steam/steamapps/common/Doom 2/base$
wine dosbox.exe -conf doom2.conf -fullscreen -exit
fixme:win:EnumDisplayDevicesW ((null),0,0x23ff184,0x00000000), stub!
fixme:win:EnumDisplayDevicesW ((null),0,0x23ff084,0x00000000), stub!
ALSA lib conf.c:3357:(snd_config_hooks_call) Cannot open shared library
libasound_module_conf_pulse.so
ALSA lib pcm.c:2266:(snd_pcm_open_noupdate) Unknown PCM default
ALSA lib pcm_dsnoop.c:606:(snd_pcm_dsnoop_open) unable to open slave
fixme:d3d:wined3d_device_decref Device released with resources still bound,
acceptable but unexpected.
fixme:d3d:wined3d_device_decref Leftover resource 0x130338 with type
WINED3D_RTYPE_TEXTURE_2D (0x2).
--
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=36942
Bug ID: 36942
Summary: Silent Thunder setup.exe crashes at start
Product: Wine
Version: 1.7.22
Hardware: x86-64
OS: Mac OS X
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: kernel32
Assignee: wine-bugs(a)winehq.org
Reporter: cthielen(a)gmail.com
Created attachment 49049
--> http://bugs.winehq.org/attachment.cgi?id=49049
Backtrace of crash
Sierra's 1997 Silent Thunder A-10 Tank Killer II game fails to start when
launching SETUP.EXE off the CD. Attached is the backtrace.
--
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=31850
Bug #: 31850
Summary: Age of Mythology does not start
Product: Wine
Version: 1.5.14
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: grishguard-all(a)yahoo.it
Classification: Unclassified
Hi,
after i've entered the serial code, wine gives me an error every time different
from the one before. I here attach a backtrace, hope you resolve. Good work
Ubuntu 12.04
Wine 1.5.14
Ps: the game does not work under Wine 1.4 neither.
--
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=40479
Bug ID: 40479
Summary: Overwatch: Crash on launch
Product: Wine
Version: 1.9.7
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: joseph.dunnigan(a)gmail.com
Distribution: ---
Created attachment 54245
--> https://bugs.winehq.org/attachment.cgi?id=54245
Backtrace
Overwatch crashes when attempting to launch the game.
--
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=35796
Bug ID: 35796
Summary: Mortal Online bootstapper installer/client fails on
startup (network ping exception)
Product: Wine
Version: 1.7.14
Hardware: x86
OS: Linux
Status: NEW
Severity: normal
Priority: P2
Component: mscoree
Assignee: wine-bugs(a)winehq.org
Reporter: focht(a)gmx.net
Hello folks,
a #winehq user posted this backtrace with pastebin before switching to MS .NET
Framework.
Since this might be still useful for Wine-Mono I report it here.
I can't reproduce this as I don't have a Mono environment - feel free to close
if not applicable.
Pastebin:
--- snip ---
$ WINEPREFIX=/home/sxe/mo4-wine/ wine Mortal\ Online\ Launcher.exe
wine: created the configuration directory '/home/sxe/mo4-wine'
fixme:storage:create_storagefile Storage share mode not implemented.
err:mscoree:LoadLibraryShim error reading registry key for installroot
err:mscoree:LoadLibraryShim error reading registry key for installroot
err:mscoree:LoadLibraryShim error reading registry key for installroot
err:mscoree:LoadLibraryShim error reading registry key for installroot
fixme:storage:create_storagefile Storage share mode not implemented.
fixme:iphlpapi:NotifyAddrChange (Handle 0xece8a0, overlapped 0xece8ac): stub
wine: configuration in '/home/sxe/mo4-wine' has been updated.
fixme:wincodecs:PngDecoder_Block_GetCount stub
libgluezilla not found. To have webbrowser support, you need libgluezilla
installed
fixme:wincodecs:JpegDecoder_Frame_CopyPalette (0x26f506c,0x26cfff0): stub
fixme:gdiplus:GdipGetLineSpacing ignoring style
fixme:gdiplus:GdipGetLineSpacing ignoring style
fixme:wincodecs:JpegDecoder_Frame_CopyPalette (0x27e55dc,0x27fe2e8): stub
protocol "IP" not found; You might want to add this to /etc/protocols
err:winediag:WSASocketW Failed to create a socket of type SOCK_RAW, this
requires special permissions.
exception inside UnhandledException handler: Object reference not set to an
instance of an object
[ERROR] FATAL UNHANDLED EXCEPTION: System.Net.Sockets.SocketException: Error
looking up error string
at System.Net.Sockets.Socket..ctor (AddressFamily addressFamily, SocketType
socketType, ProtocolType protocolType) [0x00000] in <filename unknown>:0
at System.Net.NetworkInformation.Ping.SendPrivileged (System.Net.IPAddress
address, Int32 timeout, System.Byte[] buffer,
System.Net.NetworkInformation.PingOptions options) [0x00000] in <filename
unknown>:0
at System.Net.NetworkInformation.Ping.Send (System.Net.IPAddress address,
Int32 timeout, System.Byte[] buffer, System.Net.NetworkInformation.PingOptions
options) [0x00000] in <filename unknown>:0
at System.Net.NetworkInformation.Ping.Send (System.String hostNameOrAddress,
Int32 timeout, System.Byte[] buffer, System.Net.NetworkInformation.PingOptions
options) [0x00000] in <filename unknown>:0
at System.Net.NetworkInformation.Ping.Send (System.String hostNameOrAddress,
Int32 timeout, System.Byte[] buffer) [0x00000] in <filename unknown>:0
at System.Net.NetworkInformation.Ping.Send (System.String hostNameOrAddress,
Int32 timeout) [0x00000] in <filename unknown>:0
at System.Net.NetworkInformation.Ping.Send (System.String hostNameOrAddress)
[0x00000] in <filename unknown>:0
at (wrapper remoting-invoke-with-check)
System.Net.NetworkInformation.Ping:Send (string)
at Mortal_Online_Launcher.frmMain.UpdatePing () [0x00000] in <filename
unknown>:0
at System.Threading.Thread.StartInternal () [0x00000] in <filename unknown>:0
--- snip ---
Download client: http://www.mortalonline.com/download-game-client/
Regards
--
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=37284
Bug ID: 37284
Summary: Browse C: Drive error.
Product: Wine
Version: unspecified
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: minor
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: tjmack2(a)yahoo.com
Created attachment 49587
--> https://bugs.winehq.org/attachment.cgi?id=49587
backtrace log
I get an error message when I use "Browse C: Drive" or "Configure" using Wine.
I had an error also when using version 1.6. I am getting errors when I run
applications so I figured I should find the issue with this first.
--
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=39531
Bug ID: 39531
Summary: bat file bugs
Product: Wine
Version: 1.6
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: critical
Priority: P2
Component: cmd
Assignee: wine-bugs(a)winehq.org
Reporter: wazeeahmed(a)gmail.com
Distribution: ---
Created attachment 52678
--> https://bugs.winehq.org/attachment.cgi?id=52678
It contains the output of the batch file so it will be easier to find the error
Can't utilize the batch file . Don't know why everytime when I run it from
terminal it faces issues in the 1st line like
fixprocess:fixme:process:CmdBatNotification 1
chmod: bin: No such file or directory ( this chmod is compiled to work on
windows only and all of the related executable , I know linux have them also
but I needed them so that I wont get confused and linux version of the
respective script is only limited to 64bit . That is why I had to use wine to
run these windows .bat file ) . So I ignored this and tried to make it work .
So far it worked but whenever unpacking the ramdisk , it got into an error ) .
I forgot to mention this is a android kernel kitchen batch file . So please if
I missing something let me know or if it's a bug then a fix will save me from
so much problem . I attached the log file also . I know you are so much busy
taking all the strain of others . But we are depending on you so no other
options I have . Thanks in advance .
--
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=37391
Bug ID: 37391
Summary: fr-043 rove fails because of E_NOTIMPL exception
Product: Wine
Version: 1.7.28
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: minor
Priority: P2
Component: directx-d3d
Assignee: wine-bugs(a)winehq.org
Reporter: nvr4d(a)rambler.ru
Created attachment 49726
--> https://bugs.winehq.org/attachment.cgi?id=49726
wine log
fr-043 loader starts successfully, but when I press "Demo" button, it fails
with an error message saying ".\graphics_dx9.cpp(3661): d3d error 80004001 (1):
E_NOTIMPL (The function called is not supported at this time)"
Wine log in attachment displays some format conversion fixmes.
The demo can be downloaded at http://www.pouet.net/prod.php?which=54588
--
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=37651
Bug ID: 37651
Summary: Guild Wars looks like crappy doo doo
Product: Wine
Version: unspecified
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: nickysworld(a)gmail.com
Distribution: ---
Created attachment 50109
--> https://bugs.winehq.org/attachment.cgi?id=50109
Guild Wars looks like crappy doo doo
* I'm using ati radeon card with the open source driver under alphaOS (arch
linux variant)
* I've successfully ran GW on other systems and hardware
* I've disabled UseGLSL per the intructions on the appdb entry as well as tried
-dx8 -noshaders
* the colors are completely random, as if evening or night when it shouldn't
be, or red or blue ambiance as seen in the screenshot
--
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=39754
Bug ID: 39754
Summary: Just cause 2 needs DXGI_FORMAT_R8G8B8A8_TYPELESS
Product: Wine
Version: 1.8-rc3
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: directx-d3d
Assignee: wine-bugs(a)winehq.org
Reporter: wine(a)karolherbst.de
Distribution: ---
starting "Just cause 2" triggers an error box with the hr code 8876086c
here is the related debug output with WINEDEBUG=relay,d3d,d3d_texture
trace:d3d_texture:wined3d_texture_init texture 0x3cc83b8, texture_ops
0x7df270b4, layer_count 1, level_count 1, resource_type WINED3D_RTYPE_TEXTURE,
format WINED3DFMT_R8G8B8A8_TYPELESS, multisample_type 0x2, multisample_quality
0, usage WINED3DUSAGE_RENDERTARGET, pool WINED3D_POOL_DEFAULT, width 1024,
height 768, depth 1, surface_flags 0, device 0x3c9d270, parent 0x3cc8360,
parent_ops 0x7bd7dcec, resource_ops 0x7df27098.
warn:d3d:resource_init Format WINED3DFMT_R8G8B8A8_TYPELESS cannot be used for
render targets.
warn:d3d:resource_init Format WINED3DFMT_R8G8B8A8_TYPELESS cannot be used for
render targets.
warn:d3d:resource_init Format WINED3DFMT_R8G8B8A8_TYPELESS cannot be used for
render targets.
warn:d3d:resource_init Did not find a suitable GL resource type, resource type,
d3d type 3.
warn:d3d_texture:wined3d_texture_init Failed to initialize resource, returning
0x8876086c
warn:d3d_texture:texture_init Failed to initialize texture, returning
0x8876086c.
0041:Call ntdll.RtlFreeHeap(00130000,00000000,03cc83b8) ret=7debc824
0041:Ret ntdll.RtlFreeHeap() retval=00000001 ret=7debc824
warn:d3d_texture:wined3d_texture_create Failed to initialize texture, returning
0x8876086c.
0041:Ret wined3d.wined3d_texture_create() retval=8876086c ret=7bd56280
it seems like wine needs to handle DXGI_FORMAT_R8G8B8A8_TYPELESS for this to
work.
--
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=37636
Bug ID: 37636
Summary: COM port Write
Product: Wine
Version: 1.6.1
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: critical
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: edgarmedina20(a)hotmail.com
Distribution: ---
Created attachment 50089
--> https://bugs.winehq.org/attachment.cgi?id=50089
COM port Write
using u center, for GPS application and configuration,
this bug happened when I wanted to write though the serial port (using COM1). I
can't write though COM port but I can read.
--
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=37525
Bug ID: 37525
Summary: Bionic Commando: No shadows mapping
Product: Wine
Version: 1.7.30
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: david.gamiz(a)gmail.com
Distribution: ---
Created attachment 49943
--> https://bugs.winehq.org/attachment.cgi?id=49943
No Shadows comparation Wine vs Win 7
The game run perfectly. Only not render shadows mapping.
Sun or light shadows not rendering.
Add image comparison the same machine and same scenes for view de bug.
My Hardware:
AMD Phenom(tm) II X6 1055T Processor × 6
8GB RAM
Nvidia GeForce GTX 660 Ti 1024 MB
Driver Nvidia: 340.32 from ppa Ubuntu X-Edgers
Gamepad Xbox360 Wired USB
--
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=28037
Summary: cmd: sharing violation when using >>
Product: Wine
Version: 1.3.26
Platform: x86
OS/Version: Linux
Status: NEW
Keywords: download, source, testcase
Severity: normal
Priority: P2
Component: cmd
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: frederic.delanoy(a)gmail.com
Assuming "bar" does not pre-exist, issuing
if 1==1 echo foo>>bar
in cmd generates a "Sharing violation" message, and "bar" isn't created
--
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=41194
Bug ID: 41194
Summary: SetFileTime does not set timestamp on ntfs-3g mounts
Product: Wine
Version: 1.9.16
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: minor
Priority: P2
Component: kernel32
Assignee: wine-bugs(a)winehq.org
Reporter: wine.severach(a)spamgourmet.com
Distribution: ---
To change file times:
Total Commander Wine: Files, Change Attributes
Double Commander: Files, Change Attributes
Linux Shell: touch -r, touch -d, touch -t
File time changes from TC are applied VFAT and ext mounts. File time changes
from TC are ignored on NTFS mounts. Linux touch and Double Commander are able
to change the file time on NTFS mounts.
--
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=35902
Bug ID: 35902
Summary: [EA Origin] Online login is currently unavailable
Product: Wine
Version: 1.7.15
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: robert2505(a)gmail.com
Created attachment 47943
--> http://bugs.winehq.org/attachment.cgi?id=47943
log from running origin up untill the login screen that displays the message
Since the latest update (a few days ago), EA Origin displays the message
"Online login is currently unavailable"
It won't allow me to log in
I'm running the latest wine, version 1.7.15 on archlinux x86_64.
I've tried the following:
-start over in a fresh prefix with WINEARCH=win32
-install Qt5 as described in the appdb entry
-use winetricks to install vcrun2008 and vcrun2010
-recompiling wine, in case an update broke it
-running it in a windows vm in case the server is actually down (it isn't)
I don't recognise anything out of the ordinary in the log, other than the
"CLSCTX_REMOTE_SERVER not supported" message. I'm not sure it wasn't there
before, but it also displays in Steam and that works fine.
--
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=28251
Summary: Shadows do not appear in Mafia II
Product: Wine
Version: 1.3.27
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: peanuthead_069(a)yahoo.com
I'm not sure if it can be fixed via winetricks, but shadow maps don't show up
ingame even if I tweak with the ingame settings. Also, the skydome texture
occasionally flickers when I drive or move around. Nothing really that
show-stopping, as I can play the game just fine, albeit with somewhat lower
framerates.
--
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=19376
Summary: Suspend kwin's compositing when starting a 3D
application
Product: Wine
Version: unspecified
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: enhancement
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: kde(a)martin-graesslin.com
KDE bug https://bugs.kde.org/show_bug.cgi?id=198744 illustrates that some
graphics card drivers are still not able to support 3D applications in a
composited environment correctly. This seems to be a stronger problem for wine
applications (at least in the bug report).
KWin supports suspending compositing via a dbus interface
(http://websvn.kde.org/*checkout*/trunk/KDE/kdebase/workspace/kwin/org.kde.K…).
You can basically check if compositing is active, suspend it when the app is
started and resume when the app is closed. This is for example done by KDE's
powermanagement daemon.
As a shell script it looks like that:
composited='qdbus org.kde.kwin /KWin compositingActive'
if $composited; then qdbus org.kde.kwin /KWin toggleCompositing; fi
wine blablabla
if $composited; then qdbus org.kde.kwin /KWin toggleCompositing; fi
I basically wish with this enhancement report that you add support for
suspending KWin's compositing on an application basis in wine. It shouldn't be
for every app and it shouldn't be activated in general but the user should have
the possibility to just say that one specified app should suspend compositing.
--
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=24951
Summary: Call of Duty / UO: Jerky freelook
Product: Wine
Version: 1.3.6
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: major
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: gav616(a)gmail.com
At the main menu:
When the cursor is moveed around it 'seems' to be at a very low framerate and
it jerks about.
In-game:
When freelooking around, the game seems to stay at the correct rate but the
mouse movements are jerked and misinterpreted. It looks like the FPS is
dropping to 5 when the jerks occur, but the FPS remains constant through the
jerks.
Audio is not effected.
--
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=40336
Bug ID: 40336
Summary: Freelancer: Background Texture for in-game "NavMap"
spreads across entire screen (Intel only)
Product: Wine
Version: 1.9.5
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: adam(a)aphirst.karoo.co.uk
Distribution: ---
Created attachment 54005
--> https://bugs.winehq.org/attachment.cgi?id=54005
Example of erroneous behaviour
This is essentially a repost of Bug #494 on the Wine-Staging tracker, as it
turns out that it is not unique to the -staging builds.
https://bugs.wine-staging.com/show_bug.cgi?id=494
-----
A feature of the HUD in this game is the "NavMap", a navigation map which
overlays onto the current gameplay and displays a map either of the current
star-system, or of the whole galactic sector, and with some additional relevant
information.
This HUD, like the other gameplay menu-elements, is supposed to simply overlay
onto the screen, being transparent/translucent on the outside. Indeed, one can
also interact with some game/menu elements outside said window even if it is
currently displayed.
However, the observed behaviour (attached) for the "NavMap" is that the
background texture for the "map" portion, a texture of a star-scape, is instead
displayed across the entire screen. The user can still interact with the (now
invisible!) objects behind the texture. Some text in the NavMap window is also
obscured.
This behaviour occurs on a clean install of the game, with the official 1.1
patch, and with Jason's Extended Patch 1.20; also on just the Demo version of
the game.
http://dl.4players.de/f1/freelancer/freelancer_demo.exe
---
I am currently running Wine-Staging 1.9.5 but the bug has been present since at
least as early as 1.7.48.
Intel i5-3540M with HD4000 graphics, 16GB RAM. Arch Linux x86_64, Linux 4.3.6
(but at least as far back as 4.1.4). Intel driver 2.99.917+579+g74cd4d0 (but at
least as far back as 2.99.917+381+g5772556)
---
Michael Müller from the Wine-Staging tracker tested this on other graphics
hardware/stacks and came to the conclusion that the issue is only present on
Intel+Mesa.
--
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=39985
Bug ID: 39985
Summary: Battle.net fails to start with an error dialog
pointing to Qt with wine staging, but not with regular
wine
Product: Wine
Version: 1.9.1
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: krafczyk.matthew(a)gmail.com
Distribution: ---
When starting Battle.net with wine-staging 1.9.1, the program fails to start
with an error dialog with the following text:
"This application failed to start because it could not find or load the Qt
platform plugin "windows".
Reinstalling the application may fix this problem."
If you then switch to regular wine 1.9.1, the program starts as expected
without the error dialog.
I'm running Arch, and I've installed Battle.net into a 32-bit prefix with the
environment variable WINEARCH=win32
You can download Battle.net from here:
http://www.battle.net/download/getInstallerForGame?os=win&locale=enUS&versi…
--
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=40019
Bug ID: 40019
Summary: wine 1.9.1 staging : it can not run a install exe file
, it reports "Error reading setup initialization file"
Product: Wine-staging
Version: 1.9.1
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: major
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: zuogang(a)huawei.com
CC: erich.e.hoover(a)wine-staging.com, michael(a)fds-team.de,
sebastian(a)fds-team.de
Distribution: ---
wine can not run a install exe file , it reports "Error reading setup
initialization file"
on host fedora 23 amd64
[zoge@localhost shm]$ rpm -qf /usr/bin/wine
wine-core-1.9.1-1.fc23.x86_64
wine-core-1.9.1-1.fc23.i686
in kde desktop, right click the exe file , select "open with wine ..."
the exe is downloaded from : http://www.sourceinsight.com/down35.html
--
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=40918
Bug ID: 40918
Summary: wine-patched-staging-1.9.13/server - error building on
NetBSD
Product: Wine-staging
Version: 1.9.13
Hardware: x86
OS: NetBSD
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: adrien_fernandes2(a)hotmail.com
CC: erich.e.hoover(a)wine-staging.com, michael(a)fds-team.de,
sebastian(a)fds-team.de
Created attachment 55017
--> https://bugs.winehq.org/attachment.cgi?id=55017
Outputs of the make command
I am on NetBSD 7.0.1 (GENERIC.201605221355Z) i386
It is NetBSD stable.
--
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=40032
Bug ID: 40032
Summary: Starcraft 2 crashes
Product: Wine-staging
Version: 1.9.2
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: krafczyk.matthew(a)gmail.com
CC: erich.e.hoover(a)wine-staging.com, michael(a)fds-team.de,
sebastian(a)fds-team.de
Distribution: ---
StarCraft 2 now crashes with the error message
"An error occurred starting StarCraft II. Please try again. (Error 2:
-2147483392)"
This happens for both the 32 bit and 64 bit versions of StartCraft 2 and
happens with and without CSMT. Here is a pastebin from launching the 64bit
version with CSMT: http://pastebin.com/ntk9kM4u
StarCraft 2 works just fine with plain 1.9.2
--
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=39369
Bug ID: 39369
Summary: Alpha Prime: certain sounds muffled when using EAX
Product: Wine-staging
Version: 1.7.40
Hardware: x86
URL: http://www.gamershell.com/download_18730.shtml
OS: Linux
Status: NEW
Keywords: download
Severity: minor
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: gyebro69(a)gmail.com
CC: erich.e.hoover(a)wine-staging.com, michael(a)fds-team.de,
sebastian(a)fds-team.de
Distribution: ---
When EAX is enabled in staging, certain sounds in the game like footsteps,
shooting sound, activating an object or speech during cutscenes are so quiet
that they're barely audible.
Other sounds like background music, NPC talks are playing normally.
There's is nothing related in the terminal.
alphaprime_demosetup_en.zip
sha1: e2cbf8b2aa4f6de3d93cb48997a2b7eca0460a77
wine-1.7.51-268-g781b88b (Staging)
Fedora 22 32-bit
Alsa 1.0.29, stereo speaker setup (PA is not running)
Audio device: NVIDIA Corporation MCP61 High Definition Audio (rev a2)
--
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=40611
Bug ID: 40611
Summary: Wine-stagging: Illegal instruction error under FreeBSD
11-CURRENT
Product: Wine-staging
Version: 1.9.9
Hardware: x86
OS: FreeBSD
Status: UNCONFIRMED
Severity: major
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: iron.udjin(a)gmail.com
CC: erich.e.hoover(a)wine-staging.com, michael(a)fds-team.de,
sebastian(a)fds-team.de
Everything works fine without stagging patch.
With stagging patch when I trying to start Steam or any other program I see:
err:wineboot:start_services_process Unexpected termination of services.exe -
exit code 0
[2016-05-11 00:40:18] Startup - updater built Apr 29 2016 15:19:38
Looks like steam didn't shutdown cleanly, scheduling immediate update check
Illegal instruction
I guess the error is related to sound. When I start winecfg and go to "Audio"
tab, I'm getting the same "Illegal instruction" error.
How can I debug it further?
Do I need to send you "truss" log or WINEDEBUG=all output?
--
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=39676
Bug ID: 39676
Summary: The Darkness II shows only black screen when CSMT
enabled
Product: Wine-staging
Version: 1.8-rc1
Hardware: x86
URL: http://store.steampowered.com/app/67370/
OS: Linux
Status: NEW
Keywords: download
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: gyebro69(a)gmail.com
CC: erich.e.hoover(a)wine-staging.com, michael(a)fds-team.de,
sebastian(a)fds-team.de
Distribution: ---
Created attachment 52901
--> https://bugs.winehq.org/attachment.cgi?id=52901
terminal output
This is the game from bug #30061.
When CSMT is enabled in staging, the game starts but shows only a black screen
(I can hear audio from the intro videos but nothing can be seen).
This happens when the game is started in fullscreen mode. In windowed mode the
game starts properly (CSMT enabled). Switching between fullscreen and windowed
mode is available in the game's display option menu.
This might be interesting from the console log (not present when CSMT is
disabled):
err:d3d:wined3d_debug_callback 0x21be40: "GL_INVALID_VALUE in
glTexSubImage2D(xoffset+width)".
err:d3d_surface:wined3d_surface_upload_data >>>>>>>>>>>>>>>>> GL_INVALID_VALUE
(0x501) from glTexSubImage2D @ ../wined3d/surface.c / 1706
The problem can be reproduced with the demo version on Steam.
wine-1.8-rc1-81-g6790d82 (Staging)
Fedora 23
OpenGL vendor string: nouveau
OpenGL renderer string: Gallium 0.4 on NV92
OpenGL core profile version string: 3.3 (Core Profile) Mesa 11.2.0-devel
OpenGL core profile shading language version string: 3.30
--
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=40332
Bug ID: 40332
Summary: Prince of Persioa 2008 crash at intro with
wine-staging csmt
Product: Wine
Version: 1.9.5
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: fin4478(a)hotmail.com
Distribution: ---
Similar bug in wine-staging version than in 36063. Graphics hangs in the intro
sequence when Elika looks up and shuts the mouth of Prince. Sound keeps going
on for a while. To kill the game, press alt+ctrl+f1 and type ps -e to find the
application id. There is no trace in the terminal what happened when launching
the game from a terminal. With wine 1.8.1 the game works ok.
--
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=40363
Bug ID: 40363
Summary: Wine Stabilization - Gentoo Slow to Adopt With Valid
Reason
Product: Wine-staging
Version: 1.8.1
Hardware: x86-64
URL: https://bugs.gentoo.org/show_bug.cgi?id=578202
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: ecyoung(a)grandecom.net
CC: erich.e.hoover(a)wine-staging.com, michael(a)fds-team.de,
sebastian(a)fds-team.de
Distribution: Gentoo
I opened the bug that I'm asking you to comment on. I opened this bug because
Gentoo's Stable version is still at 1.6.2. I use an old RPG, Istaria which is
blocky in 1.9.5, and Eve Online, which is unplayable in my case using 1.6.2.
In order to properly regression test where my issues are coming from, I thought
I would start at finding out why Gentoo's stable version lagged behind WineHQ's
stable version. Our package maintainer is doing the best he can, as our
distribution is source based, and he is perfectly within his right not to use a
custom patchset (See Comment 3).
Comment 7 in my bug states:
Let's keep this open with the info from NP-Hardass so that anybody else who
seeks for 1.8.1 knows.
I'm closing #578272 as I see no point of having it open. NP-Hardass stated he
wants to bump and stabilize 1.8.x, so it's on upstream now.
Thanks for your interest Carter, maybe try to convince upstream to get it going
;)
----------------------------------------
Bug 578272 was implemented as a tracker, but the commenter is correct in
assuming that the issue lies upstream. I present Snippets from Comment 3:
I'd prefer that our stable wine 1.8 use the official gstreamer 1.0 patchset,
but upstream never released that under the 1.8 branch. Once again though, I'd
rather not be hosting a custom patchset for stable. There is currently a
request to the upstream wine stable maintainer to include this in 1.8.2.
1.8.1 was never bumped because Wine Staging never released a patchset for 1.8.1
and I'd rather not have a stable candidate in package.use.stable.mask and not
have staging support. I'd also rather not have to host a custom staging patch
just for 1.8.1. I've cc'd the Staging devs in case they'd like to weigh in on
making an official release for 1.8.1.
----------------------------------------
--
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=41054
Bug ID: 41054
Summary: Battle.net.exe deadlocks in CriticalSection
Product: Wine-staging
Version: 1.9.15
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: major
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: rankincj(a)yahoo.com
CC: erich.e.hoover(a)wine-staging.com, michael(a)fds-team.de,
sebastian(a)fds-team.de
Distribution: ---
Trying to launch Blizzard's Battle.net.exe using Wine Staging 1.9.15 RPMs from
Fedora 24. However, the process deadlocks and prints messages like:
err:ntdll:RtlpWaitForCriticalSection section 0x10321d8 "?" wait timed out in
thread 0063, blocked by 0000, retrying (60 sec)
err:ntdll:RtlpWaitForCriticalSection section 0x10321d8 "?" wait timed out in
thread 0063, blocked by 0000, retrying (60 sec)
This happens with both 32 bit and 64 bit prefixes. Disabling all "staging"
options via winecfg does not help.
--
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=40225
Bug ID: 40225
Summary: NtQuerySection returns wrong size
Product: Wine
Version: 1.9.3
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: ntdll
Assignee: wine-bugs(a)winehq.org
Reporter: mail(a)georg.so
Distribution: ---
Created attachment 53743
--> https://bugs.winehq.org/attachment.cgi?id=53743
NtQuerySection test case via boost interprocess
When using NtQuerySection to get the file size of a file mapping the wine
result deviates from the native one.
With wine, it seems that the size is rounded up to the next page. On native
windows, the real file size is returned.
How to reproduce (e.g. with a mingw cross compile environment):
mkdir build
cd build
mingw64-cmake ..
mingw64-make
wine64 main
Actual behavior:
fixme:winediag:start_process Wine Staging 1.9.3 is a testing version containing
experimental patches.
fixme:winediag:start_process Please mention your exact version when filing bug
reports on winehq.org.
region.get_size() == 4096
sizeof(inp)-1 == 5
Assertion failed!
Program: Z:\home\gms\program\libixxxutil\build-case-win-rel\main.exe
File: /home/gms/program/libixxxutil/test/mapped_size_case/main.cc, Line 28
Expression: region.get_size() == sizeof(inp)-1
abnormal program termination
Expected behavior (as e.g. on Windows 7):
No output and success exit code.
How reproducible:
always
The test program uses Boost Interprocess functions for creating that mapping
and getting the size.
See also:
cf.
http://www.boost.org/doc/libs/1_60_0/doc/html/boost/interprocess/mapped_reg…
> The OS could allocate more pages than size/page_size(), but get_address() will always return the address passed in this function (if not null) and get_size() will return the specified size.
http://stackoverflow.com/a/26983182/427158
-> NtQuerySection
--
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=39368
Bug ID: 39368
Summary: Some games (F.E.A.R. 1, Hitman: Contracts) crash on
start when EAX(Environmental Audio Extensions) enabled
Product: Wine-staging
Version: 1.7.40
Hardware: x86
URL: http://www.gamershell.com/download_10167.shtml
OS: Linux
Status: NEW
Keywords: download
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: gyebro69(a)gmail.com
CC: erich.e.hoover(a)wine-staging.com, michael(a)fds-team.de,
sebastian(a)fds-team.de
Distribution: ---
Created attachment 52478
--> https://bugs.winehq.org/attachment.cgi?id=52478
F.E.A.R. demo backtrace
When EAX is enabled in staging, some games crash on start.
Two examples are F.E.A.R. or Hitman: Contracts.
Both games have demos to reproduce the problem.
Hitman: Contracts demo:
http://www.gamershell.com/download_5663.shtml
wine-1.7.51-268-g781b88b (Staging)
Fedora 22 32-bit
Alsa 1.0.29, stereo speaker setup (PA is not running)
Audio device: NVIDIA Corporation MCP61 High Definition Audio (rev a2)
--
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=40458
Bug ID: 40458
Summary: Photoshop CC 2015 Amtlib issues
Product: Wine-staging
Version: 1.9.7
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: msnduy(a)hotmail.de
CC: erich.e.hoover(a)wine-staging.com, michael(a)fds-team.de,
sebastian(a)fds-team.de
Distribution: ---
Created attachment 54210
--> https://bugs.winehq.org/attachment.cgi?id=54210
logs
I have issues with running Photoshop CC 2015 (64bit) in Wine-Staging.
It installs fine with both staging and stable (PDApp only works with Staging).
But I can't start it in staging without an error although in wine stable it
works normally but the user interface of photoshop is somehow not correctly
rendered.
Wine-Staging (Compiled from git upstream):
Photoshop shows an error with the error code 16. By luck I also came across the
amtlib.log file which also contained error message with the same error code,
saying:
04/12/16 22:38:32:097 | [ERROR] | | | | AMT | | | 57 | Error: Failed to
update RW check key !
04/12/16 22:38:32:097 | [ERROR] | | | | AMT | | | 57 | ERROR: SLCache is
not writable, hence exiting. (Errno = 16)
I am sure it's the amtlib what is causing the issue as I didn't get these lines
with wine-stable.
The tricky part is that I don't know what patch from wine-staging is causing
this issue.
I attached the log files which are interesting.
I am not sure now how to debug this further as the wine debug output isn't
helpful either (basically the same output as wine stable).
What might by broken can be Registry/memory/file access, the problem is that I
don't know what api calls amtlib is doing.
Well, if someone can give me further instructions how to debug the issue I
would be glad. Also if you have enough time or whatsoever you could try install
Photoshop CC 2015 :).
--
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=39348
Bug ID: 39348
Summary: Multiple games hang on exit when CSMT enabled
Product: Wine-staging
Version: unspecified
Hardware: x86
URL: http://www.fileplanet.com/191497/190000/fileinfo/Nikop
ol:-Secrets-of-the-Immortals-Demo
OS: Linux
Status: NEW
Keywords: download
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: gyebro69(a)gmail.com
CC: michael(a)fds-team.de, sebastian(a)fds-team.de,
stefan(a)codeweavers.com
Distribution: ---
Created attachment 52444
--> https://bugs.winehq.org/attachment.cgi?id=52444
winedbg bt all
I have some games that freeze on exit when CSMT is enabled.The game executable
remains in memory and constantly uses 100% cpu after exiting the game.
Most of the games with this problem are older titles, using Directx 6-8, some
of them are newer ones, built on DX9.
With disabled CSMT those games always quit properly.
Plain terminal output doesn't show anything related.
Reproduced with nvidia binary driver 340.93 and nouveau/mesa git.
Two examples:
1. Freespace 2 demo (DX7, 60M):
http://www.fileplanet.com/126954/120000/fileinfo/Freespace-2-Demo-
(in the launcher select <Detect Available cards>, then select a video mode with
3D support, start the game. In the main menu press <Esc> a couple times to quit
the demo).
2. Nikopol demo (DX9, 355M):
http://www.fileplanet.com/191497/190000/fileinfo/Nikopol:-Secrets-of-the-Im…
wine-1.7.51-225-g3966aff
Fedora 22 32-bit
OpenGL vendor string: nouveau
OpenGL renderer string: Gallium 0.4 on NV92
OpenGL core profile version string: 3.3 (Core Profile) Mesa 11.1.0-devel
--
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=40943
Bug ID: 40943
Summary: System Shock demo (DX 11): loads to a white screen
then switches to a black screen
Product: Wine
Version: 1.9.14
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: fjfrackiewicz(a)gmail.com
Distribution: ---
Created attachment 55080
--> https://bugs.winehq.org/attachment.cgi?id=55080
Terminal output Wine 1.9.14
When attempting to run the demo for the System Shock remake, it loads to a
white screen and then after a minute or so it switches to a black screen. I can
hear the game's ambient music and sound effects and I assume that, if the game
could render graphics in Wine, I am in the main menu screen.
Windows 7 64-bit prefix Wine 1.9.14
--
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=29474
Bug #: 29474
Summary: IconsExtract: Tooltips for Search, Save, Copy, [icon]
Properties, and Close buttons do not appear when
hovering mouse over button.
Product: Wine
Version: 1.3.35
Platform: x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: jthomas97411(a)yahoo.com
Classification: Unclassified
Simply open IconsExtract (either version 1.46 or 1.47) in Wine (haven't seen a
Wine version be able to do this) and hover your mouse over the buttons on the
top that have picture icons (Magnifying glass for Search, Floppy diskette for
Save, Finger pointing to a piece of paper for [icon] properties, and an arrow
pointing out an ajar door for Quit). A tooltip is supposed to appear saying
what the button does when the mouse is hovered over, but no tooltip appears.
There is zero terminal output. Nada. None. Not even a single stub or fixme.
And yes Gecko was installed, and yes it was a clean prefix.
--
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=14552
Summary: Chalos League screen is black
Product: Wine
Version: 1.1.0
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: major
Priority: P2
Component: directx-d3d
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: henryju(a)yahoo.fr
When launching Chaos League the screen is black (except cursor). We can hear
music and clicking one the menu seems to work (according to the sound).
Logs are full of
fixme:d3d:transform_projection >>>>>>>>>>>>>>>>> GL_INVALID_VALUE (0x501) from
glOrtho @ state.c / 2825
--
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=30787
Bug #: 30787
Summary: Heroes of Might and Magic V Map Editor takes minutes
to start up (winver>=Win2000)
Product: Wine
Version: 1.5.5
Platform: x86
OS/Version: Linux
Status: NEW
Severity: minor
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: gyebro69(a)gmail.com
Classification: Unclassified
Created attachment 40316
--> http://bugs.winehq.org/attachment.cgi?id=40316
winedbg backtrace during the busy state
It takes 3-4 minutes until the Map Editor for HoMM V appears when Windows
version is set to Win2000 or higher in winecfg. Using Win9x/Me, or WinNT40/35
profiles, the editor loads up in less than 10 seconds.
Wine doesn't print anything in the terminal until the editor window appears.
There is no hdd activity, but cpu usage is constantly ~100 % while Wine is busy
with loading the editor.
If I attach winedbg to the H5_MapEditor.exe process, I always get the same
backtrace as can be seen in the attachment.
It should be noted that bug #29603 describes a very similar problem. Of course
I have no proof if they're about the same problem, but the similarities are
striking.
Fedora 16 x86
gcc version 4.6.3 20120306 (Red Hat 4.6.3-2) (GCC)
Kernel 3.3.7-1.fc16.i686.PAE
--
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=24674
Summary: Civilization V shows white screen instead of video
when staring the game
Product: Wine
Version: unspecified
Platform: x86-64
OS/Version: Mac OS X 10.6
Status: UNCONFIRMED
Severity: minor
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: mikko.ronkko(a)iki.fi
Created an attachment (id=31189)
--> (http://bugs.winehq.org/attachment.cgi?id=31189)
Output on console
Instead of a video, the game shows a white screen when starting the game. The
video that should play is in WMV format.
--
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=29872
Bug #: 29872
Summary: Guild Wars: Character graphic is corrupted
Product: Wine
Version: 1.4-rc2
Platform: x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: sworddragon2(a)aol.com
Classification: Unclassified
Created attachment 38825
--> http://bugs.winehq.org/attachment.cgi?id=38825
Heavily corrupted graphic (zoomed out)
Rarely the graphic of my cracter looks a little shiny. I have seen this often
after my group died in an area and I was resurrected at a shrine. If I zoom
more out it looks more weird. If I zoom in it looks 99% normal (there are only
small orange stripes (for example at the site of the nose of my helmet)). The 2
screenshots in the attachments show this. I'm using a GeForce 8600 GT with the
NVIDIA driver 280.13.
--
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=30641
Bug #: 30641
Summary: wine silently replaces requests for thexture formats
not supported by hardware with invalid requests
Product: Wine
Version: 1.5.1
Platform: x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: directx-d3d
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: hramrach(a)gmail.com
Classification: Unclassified
When running a d3d application using s3tc on drivers that don't have support
for that texture format wine gives lots of complaints like:
err:d3d_surface:surface_allocate_surface >>>>>>>>>>>>>>>>> GL_INVALID_VALUE
(0x501) from glTexImage2D @ surface.c / 2566
err:d3d_surface:surface_upload_data >>>>>>>>>>>>>>>>> GL_INVALID_ENUM (0x500)
from glTexSubImage2D @ surface.c / 2349
GL trace shows:
37923 glTexImage2D(target = GL_TEXTURE_2D, level = 0, internalformat = GL_ZERO,
width = 64, height = 64, border = 0, format = GL_ZERO, type = GL_ZERO, pixels =
NULL)
37923: warning: glGetError(glTexImage2D) = GL_INVALID_VALUE
This is totally useless and bogus.
1) no message is logged about the application using a format that is not
supported.
2) bogus format is used instead so nobody outside of wine can figure out WTF it
is the application tried to do that did not work.
--
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=37773
Bug ID: 37773
Summary: Handel-C compiler extremely slow under WIne compared
to Windows
Product: Wine
Version: 1.7.33
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: ntdll
Assignee: wine-bugs(a)winehq.org
Reporter: felix.huber(a)schyf.de
Distribution: ---
Handel-C (a C to FPGA synthesis tool) compiles a typical design in 15 minutes
when using Win 7 in a Virtualbox.
When run under wine, no special error messages appeared, but after 10h the
compilation was still not finished and I aborted it.
I re-ran it with operf and stopped after some 15minutes. The result was that
95% of the time was spent in heap.c of ntdll.dll.so in function
HEAP_FindFreeBlock.
So I ran wine with WINEDEBUG=trace+heap,+relay and I see a lot of malloc() and
free(), but execution is so slow that I can't really see what's going on.
The problem might not be related to Handel-C but the way wine manages the heap,
as I see also lots of malloc/free with other windows applications, even when
they're idle.
Tests were done with Opensuse 64bit 12.3, 13.1 and 13.2 with Kernel from 3.11
to 3.18, all with the same slow performance.
The setup was always a clean installation with only MFC42 installed with
winetricks, as this was needed by the app. No differences were found when
switching between native and builtin MSVCRT dlls.
I wonder how I can narrow down the cause of this poor performance.
--
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=30182
Bug #: 30182
Summary: SuperPower 2 demo installation aborted
Product: Wine
Version: 1.4
Platform: x86
URL: http://www.gamefront.com/files/3631719/SuperPower_2_De
mo
OS/Version: Linux
Status: NEW
Keywords: download, Installer, regression
Severity: normal
Priority: P2
Component: msi
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: gyebro69(a)gmail.com
CC: hans(a)meelstraat.net
Classification: Unclassified
Regression SHA1: fa2420d6960df77d6073e3666d375936c5999fe7
Created attachment 39392
--> http://bugs.winehq.org/attachment.cgi?id=39392
terminal output
Near at the end of the install process I get the following error message:
"Feature transfer error - Error: -1603 Fatal error during installation."
Afterwards the installer reverts all changes.
Installation works with Wine-1.4 but not with wine-1.4-284-gc5faf15.
fa2420d6960df77d6073e3666d375936c5999fe7 is the first bad commit
commit fa2420d6960df77d6073e3666d375936c5999fe7
Author: Hans Leidekker <hans(a)codeweavers.com>
Date: Mon Mar 12 12:26:34 2012 +0100
msi: Perform a case insensitive match on filenames from cabinets.
:040000 040000 6b7210c4e9372efd6a5d2ad5b1d9d99eecf57a45
55e5b3a84d2e1c72443ba9bbe2cf295098f8c5b2 M dlls
The reverted patch fixed the problem.
--
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=19350
Summary: right click context menu requires multiple left
clicks, and multiple selections (control-or-shift)
selecting is buggy
Product: Wine
Version: 1.1.25
Platform: PC-x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: wine(a)tehk.org
When using flashfxp, connecting to a remote ftp site and then a list of the
files/folders on the remote site will appear.
At first, when an attampt is made to select multiple files (while holding
control or shift to select them) several clicks on a single file must be made
first in order to then complete this action.
secondly, when right clicking and bringing up a context menu, it requires 2
left clicks on any item in the menu to select that action versus the standard
one click.
--
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=18787
Summary: Implement interlocked.c for Solaris/x86 using Sun C
Product: Wine
Version: 1.1.22
Platform: PC
OS/Version: Solaris
Status: UNCONFIRMED
Severity: minor
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: baggett.patrick(a)gmail.com
When compiling Wine from source tarball on Solaris 10 5/09 with Sun Studio 12
cc I get the following message:
"You must implement the interlocked* functions for your compiler"
Sun C uses the same inline assembly language format as GCC, so simply changing
line 27 at top of libs/port/interlocked.c to read:
#if defined(__GNUC__) || defined(__SUNPRO_C)
causes it to successfully compile using the inline assembly. Given the trivial
nature of this, is there any way this can be merged?
--
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=12553
Summary: Toolbars misplaced, hidden
Product: Wine
Version: 0.9.59.
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: major
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: tarasov.igor(a)gmail.com
Created an attachment (id=12122)
--> (http://bugs.winehq.org/attachment.cgi?id=12122)
WINEDEBUG=+toolbar,+listview,+themingcombo wine 0.9.59 log
Here are two screenshots:
Wine being run with MS comctl32.dll, the same thing you see in Windows:
http://polosatus.ru/wine/toolbar_reference.png
And wine running with it's own version of comctl32:
http://polosatus.ru/wine/toolbar_bug.png
First of all, disappeared toolbar at the middle of screenshot.
Also, notice misplaced right toolbar. It is misplaced to left a bit. I suppose
both bugs are related.
Seems that developers have used some undocumented features, as log has this:
warn:toolbar:TOOLBAR_SetBitmapSize 5 buttons, undoc increase to bitmap size :
16-15 -> 20-20
and this:
warn:toolbar:TOOLBAR_SetBitmapSize 6 buttons, undoc increase to bitmap size :
20-20 -> 16-16
several times.
I've supposed that WINEDEBUG=+toolbar,+listview,+themingcombo should be enough
for initial log :)
--
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=40412
Bug ID: 40412
Summary: When opening the game Stardew Valley, I get an error
message and it never opens
Product: Wine
Version: 1.9.4
Hardware: x86
OS: Mac OS X
Status: UNCONFIRMED
Severity: blocker
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: goodman.jaime(a)gmail.com
Created attachment 54149
--> https://bugs.winehq.org/attachment.cgi?id=54149
backtrace file
I get the message "This program has encountered a serious problem and needs to
close"
Logs attached
--
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=31741
Bug #: 31741
Summary: python-2.7.3.amd64.msi fails to install
Product: Wine
Version: unspecified
Platform: x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: tahoar(a)gmail.com
Classification: Unclassified
I tried installing Python 64-bit 2.7.3 on wine1.5-amd64. The installer loads
but will not progress after the introduction page. When clicking "continue",
the installer does nothing. Clicking "cancel" exits the installer.
--
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=34893
Bug #: 34893
Summary: LaTale Launcher gives WSASocketW Failed to create a
socket of type SOCK_RAW, this requires special
permissions
Product: Wine
Version: 1.7.6
Platform: x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: iyeru42(a)gmail.com
Classification: Unclassified
tried using the regnum fix:
sudo setcap CAP_NET_RAW=ep /usr/bin/wine
sudo setcap CAP_NET_RAW=ep /usr/bin/wineserver
sudo setcap CAP_NET_RAW=ep LaTaleLauncher.exe
Also applied it to the ogplauncher, Still gave the error.
LaTale also requires GC_DONT_GC=1 before the wine command on the downloader for
the client, since it's pandomediabooster.
Get the client here: http://latale.ogplanet.com/en/download/client.og
Pastebin: http://pastebin.com/FTT71zb1
--
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=15864
Summary: window size has reversed width and height
Product: Wine
Version: 1.1.7
Platform: Other
URL: http://jeffz.name/dvt-fc2.exe
OS/Version: other
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: jeffz(a)jeffz.name
Created an attachment (id=17001)
--> (http://bugs.winehq.org/attachment.cgi?id=17001)
Windows-vs-Wine
This small program seems to have its width and height mixed up under Wine. The
attached screenshot shows the program running under windows (top) and under
Wine (below)
--
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=38815
Bug ID: 38815
Summary: PokerStars challenges and rankings windows don't work
Product: Wine
Version: 1.7.38
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: gonssal(a)gmail.com
Distribution: ---
PokerStars challenges and rankings windows don't work, they just show a black
window.
PokerStars version 7. The links to challenges and rankings are in the main
window's right sidebar.
This is the console output from starting PokerStars, logging in an trying to
open the challenges window:
fixme:actctx:parse_depend_manifests Could not find dependent assembly
L"Microsoft.Windows.Common-Controls" (6.0.0.0)
fixme:ver:GetCurrentPackageId (0x33d020 (nil)): stub
fixme:toolhelp:CreateToolhelp32Snapshot Unimplemented: heap list snapshot
fixme:toolhelp:Heap32ListFirst : stub
fixme:shell:SetCurrentProcessExplicitAppUserModelID L"PokerStars.Es.Gui": stub
fixme:resource:GetGuiResources (0xffffffff,1): stub
fixme:heap:RtlSetHeapInformation 0x240000 0 0x23fcd0 4 stub
fixme:actctx:parse_depend_manifests Could not find dependent assembly
L"Microsoft.Windows.Common-Controls" (6.0.0.0)
p11-kit: couldn't load module:
/usr/lib/i386-linux-gnu/pkcs11/gnome-keyring-pkcs11.so:
/usr/lib/i386-linux-gnu/pkcs11/gnome-keyring-pkcs11.so: no s’ha pogut obrir el
fitxer objecte compartit: El fitxer o directori no existeix
fixme:process:SetProcessDEPPolicy (3): stub
fixme:heap:RtlSetHeapInformation (nil) 1 (nil) 0 stub
fixme:ntdll:NtIsProcessInJob stub: 0xffffffff (nil)
fixme:thread:GetThreadPreferredUILanguages 56, 0x33ecb0, (nil) 0x33ecb4
fixme:winsock:WSALookupServiceBeginW (0x33ed04 0x00000ff0 0x33ed4c) Stub!
fixme:iphlpapi:NotifyAddrChange (Handle 0x33ebe8, overlapped 0x98bd68): stub
fixme:win:RegisterDeviceNotificationW (hwnd=0x10494,
filter=0x33edac,flags=0x00000000) returns a fake device notification handle!
fixme:win:RegisterDeviceNotificationW (hwnd=0x10494,
filter=0x33edac,flags=0x00000000) returns a fake device notification handle!
fixme:file:FindFirstFileExW flags not implemented 0x00000002
fixme:win:EnumDisplayDevicesW ((null),0,0x33e738,0x00000000), stub!
fixme:module:load_library unsupported flag(s) used (flags: 0x00000800)
fixme:ver:GetCurrentPackageId (0x1a4e124 (nil)): stub
fixme:advapi:RegisterTraceGuidsW (0x10156000, 0x1255da58,
{3dada31d-19ef-4dc1-b345-037927193422}, 1, 0x1252d314, (null), (null),
0x1255da70): stub
fixme:ver:GetCurrentPackageId (0x1c5e9d8 (nil)): stub
fixme:dwmapi:DwmIsCompositionEnabled 0x33e3d4
fixme:wtsapi:WTSRegisterSessionNotification Stub 0x104a4 0x00000000
fixme:actctx:parse_depend_manifests Could not find dependent assembly
L"Microsoft.Windows.Common-Controls" (6.0.0.0)
p11-kit: couldn't load module:
/usr/lib/i386-linux-gnu/pkcs11/gnome-keyring-pkcs11.so:
/usr/lib/i386-linux-gnu/pkcs11/gnome-keyring-pkcs11.so: no s’ha pogut obrir el
fitxer objecte compartit: El fitxer o directori no existeix
fixme:process:SetProcessDEPPolicy (3): stub
fixme:heap:RtlSetHeapInformation (nil) 1 (nil) 0 stub
fixme:ntdll:NtIsProcessInJob stub: 0xffffffff (nil)
fixme:thread:NtQueryInformationThread Cannot get kerneltime or usertime of
other threads
fixme:module:load_library unsupported flag(s) used (flags: 0x00000800)
fixme:d3d9:D3DPERF_GetStatus (void) : stub
err:winediag:IcmpCreateFile Failed to use ICMP (network ping), this requires
special permissions.
fixme:win:EnumDisplayDevicesW ((null),0,0x33dbf8,0x00000000), stub!
fixme:d3d9:D3DPERF_GetStatus (void) : stub
fixme:d3d9:d3d9_device_CreateTexture Resource sharing not implemented,
*shared_handle (nil).
fixme:msctf:InputProcessorProfileMgr_GetActiveProfile
(0x1c3650)->({34745c63-b2f0-4784-8b67-5e12c8701a31} 0x33eb04)
fixme:ole:RemUnknown_QueryInterface No interface for iid
{00000019-0000-0000-c000-000000000046}
fixme:ntdll:NtIsProcessInJob stub: 0x20c (nil)
fixme:d3d9:d3d9_device_CreateTexture Resource sharing not implemented,
*shared_handle (nil).
fixme:ntdll:NtIsProcessInJob stub: 0x214 (nil)
fixme:ntdll:NtIsProcessInJob stub: 0x21c (nil)
fixme:actctx:parse_depend_manifests Could not find dependent assembly
L"Microsoft.Windows.Common-Controls" (6.0.0.0)
fixme:ntdll:NtIsProcessInJob stub: 0x1fc (nil)
fixme:ntdll:NtIsProcessInJob stub: 0x224 (nil)
fixme:ntdll:NtIsProcessInJob stub: 0x22c (nil)
fixme:ntdll:NtIsProcessInJob stub: 0x234 (nil)
fixme:ntdll:NtIsProcessInJob stub: 0x23c (nil)
fixme:ntdll:NtIsProcessInJob stub: 0x244 (nil)
fixme:ntdll:NtIsProcessInJob stub: 0x24c (nil)
fixme:hlsl_parser:hlsl_parse Check for valued return on void function.
fixme:hlsl_parser:hlsl_parse Implicit conversion to the return type if needed,
error out if conversion not possible.
fixme:d3dcompiler:make_assignment Check for casts in the lhs.
fixme:hlsl_parser:declare_vars Complex initializers are not supported yet.
fixme:d3dcompiler:make_assignment Check for casts in the lhs.
fixme:hlsl_parser:declare_vars Complex initializers are not supported yet.
err:d3dcompiler:compile_shader HLSL shader parsing failed.
fixme:hlsl_parser:hlsl_parse Check for valued return on void function.
fixme:hlsl_parser:hlsl_parse Implicit conversion to the return type if needed,
error out if conversion not possible.
fixme:d3dcompiler:make_assignment Check for casts in the lhs.
fixme:hlsl_parser:declare_vars Complex initializers are not supported yet.
fixme:d3dcompiler:make_assignment Check for casts in the lhs.
fixme:hlsl_parser:declare_vars Complex initializers are not supported yet.
err:d3dcompiler:compile_shader HLSL shader parsing failed.
fixme:hlsl_parser:hlsl_parse Check for valued return on void function.
fixme:hlsl_parser:hlsl_parse Implicit conversion to the return type if needed,
error out if conversion not possible.
fixme:d3dcompiler:make_assignment Check for casts in the lhs.
fixme:hlsl_parser:declare_vars Complex initializers are not supported yet.
fixme:d3dcompiler:make_assignment Check for casts in the lhs.
fixme:hlsl_parser:declare_vars Complex initializers are not supported yet.
err:d3dcompiler:compile_shader HLSL shader parsing failed.
fixme:hlsl_parser:hlsl_parse Check for valued return on void function.
fixme:hlsl_parser:hlsl_parse Implicit conversion to the return type if needed,
error out if conversion not possible.
fixme:hlsl_parser:declare_vars Complex initializers are not supported yet.
fixme:hlsl_parser:hlsl_parse Array.
fixme:d3dcompiler:make_assignment Check for casts in the lhs.
err:d3dcompiler:compile_shader HLSL shader parsing failed.
fixme:hlsl_parser:hlsl_parse Check for valued return on void function.
fixme:hlsl_parser:hlsl_parse Implicit conversion to the return type if needed,
error out if conversion not possible.
fixme:hlsl_parser:declare_vars Complex initializers are not supported yet.
fixme:hlsl_parser:hlsl_parse Array.
fixme:d3dcompiler:make_assignment Check for casts in the lhs.
err:d3dcompiler:compile_shader HLSL shader parsing failed.
fixme:hlsl_parser:hlsl_parse Check for valued return on void function.
fixme:hlsl_parser:hlsl_parse Implicit conversion to the return type if needed,
error out if conversion not possible.
fixme:hlsl_parser:declare_vars Complex initializers are not supported yet.
fixme:hlsl_parser:hlsl_parse Array.
fixme:d3dcompiler:make_assignment Check for casts in the lhs.
err:d3dcompiler:compile_shader HLSL shader parsing failed.
fixme:dwmapi:DwmGetCompositionTimingInfo ((nil) 0x33d0d4)
fixme:d3d:state_lastpixel Last Pixel Drawing Disabled, not handled yet
p11-kit: couldn't load module:
/usr/lib/i386-linux-gnu/pkcs11/gnome-keyring-pkcs11.so:
/usr/lib/i386-linux-gnu/pkcs11/gnome-keyring-pkcs11.so: no s’ha pogut obrir el
fitxer objecte compartit: El fitxer o directori no existeix
fixme:process:SetProcessDEPPolicy (3): stub
fixme:heap:RtlSetHeapInformation (nil) 1 (nil) 0 stub
fixme:ntdll:NtIsProcessInJob stub: 0xffffffff (nil)
fixme:advapi:RegisterTraceGuidsW (0x10156000, 0x1255da58,
{3dada31d-19ef-4dc1-b345-037927193422}, 1, 0x1252d314, (null), (null),
0x1255da70): stub
fixme:gdi:GdiInitializeLanguagePack stub
fixme:module:load_library unsupported flag(s) used (flags: 0x00000800)
fixme:ver:GetCurrentPackageId (0x12fe9d8 (nil)): stub
fixme:ver:GetCurrentPackageId (0x13fe9d8 (nil)): stub
fixme:ver:GetCurrentPackageId (0x11fe9d8 (nil)): stub
fixme:ntdll:NtLockFile I/O completion on lock not implemented yet
fixme:ntdll:NtIsProcessInJob stub: 0x24c (nil)
fixme:ntdll:NtIsProcessInJob stub: 0x140 (nil)
fixme:ntdll:NtIsProcessInJob stub: 0x24c (nil)
fixme:ntdll:NtIsProcessInJob stub: 0x148 (nil)
fixme:ntdll:NtIsProcessInJob stub: 0x24c (nil)
fixme:ntdll:NtIsProcessInJob stub: 0x150 (nil)
fixme:ntdll:NtIsProcessInJob stub: 0x24c (nil)
fixme:ntdll:NtIsProcessInJob stub: 0x158 (nil)
fixme:ntdll:NtIsProcessInJob stub: 0x24c (nil)
fixme:ntdll:NtIsProcessInJob stub: 0x160 (nil)
fixme:ntdll:NtIsProcessInJob stub: 0x24c (nil)
fixme:ntdll:NtIsProcessInJob stub: 0x168 (nil)
fixme:ntdll:NtIsProcessInJob stub: 0x314 (nil)
fixme:ntdll:NtIsProcessInJob stub: 0x314 (nil)
fixme:ntdll:NtIsProcessInJob stub: 0x314 (nil)
fixme:ntdll:NtIsProcessInJob stub: 0x314 (nil)
fixme:ntdll:NtIsProcessInJob stub: 0x314 (nil)
fixme:ntdll:NtIsProcessInJob stub: 0x314 (nil)
fixme:ntdll:NtIsProcessInJob stub: 0x24c (nil)
fixme:ntdll:NtIsProcessInJob stub: 0x184 (nil)
fixme:ntdll:NtIsProcessInJob stub: 0x24c (nil)
fixme:ntdll:NtIsProcessInJob stub: 0x18c (nil)
fixme:ntdll:NtIsProcessInJob stub: 0x314 (nil)
fixme:ntdll:NtIsProcessInJob stub: 0x314 (nil)
fixme:ntdll:NtIsProcessInJob stub: 0x314 (nil)
fixme:hlsl_parser:hlsl_parse Check for valued return on void function.
fixme:hlsl_parser:hlsl_parse Implicit conversion to the return type if needed,
error out if conversion not possible.
fixme:d3dcompiler:make_assignment Check for casts in the lhs.
fixme:hlsl_parser:declare_vars Complex initializers are not supported yet.
fixme:d3dcompiler:make_assignment Check for casts in the lhs.
fixme:hlsl_parser:declare_vars Complex initializers are not supported yet.
err:d3dcompiler:compile_shader HLSL shader parsing failed.
fixme:hlsl_parser:hlsl_parse Check for valued return on void function.
fixme:hlsl_parser:hlsl_parse Implicit conversion to the return type if needed,
error out if conversion not possible.
fixme:d3dcompiler:make_assignment Check for casts in the lhs.
fixme:hlsl_parser:declare_vars Complex initializers are not supported yet.
fixme:d3dcompiler:make_assignment Check for casts in the lhs.
fixme:hlsl_parser:declare_vars Complex initializers are not supported yet.
err:d3dcompiler:compile_shader HLSL shader parsing failed.
fixme:hlsl_parser:hlsl_parse Check for valued return on void function.
fixme:hlsl_parser:hlsl_parse Implicit conversion to the return type if needed,
error out if conversion not possible.
fixme:d3dcompiler:make_assignment Check for casts in the lhs.
fixme:hlsl_parser:declare_vars Complex initializers are not supported yet.
fixme:d3dcompiler:make_assignment Check for casts in the lhs.
fixme:hlsl_parser:declare_vars Complex initializers are not supported yet.
err:d3dcompiler:compile_shader HLSL shader parsing failed.
fixme:hlsl_parser:declare_vars Complex initializers are not supported yet.
fixme:hlsl_parser:hlsl_parse Array.
fixme:d3dcompiler:make_assignment Check for casts in the lhs.
err:d3dcompiler:compile_shader HLSL shader parsing failed.
fixme:hlsl_parser:declare_vars Complex initializers are not supported yet.
fixme:hlsl_parser:hlsl_parse Array.
fixme:d3dcompiler:make_assignment Check for casts in the lhs.
err:d3dcompiler:compile_shader HLSL shader parsing failed.
fixme:hlsl_parser:declare_vars Complex initializers are not supported yet.
fixme:hlsl_parser:hlsl_parse Array.
fixme:d3dcompiler:make_assignment Check for casts in the lhs.
err:d3dcompiler:compile_shader HLSL shader parsing failed.
fixme:ntdll:NtIsProcessInJob stub: 0x314 (nil)
fixme:ntdll:NtIsProcessInJob stub: 0x314 (nil)
fixme:hlsl_parser:hlsl_parse Check for valued return on void function.
fixme:hlsl_parser:hlsl_parse Implicit conversion to the return type if needed,
error out if conversion not possible.
fixme:hlsl_parser:hlsl_parse Check for valued return on void function.
fixme:hlsl_parser:hlsl_parse Implicit conversion to the return type if needed,
error out if conversion not possible.
fixme:hlsl_parser:hlsl_parse Check for valued return on void function.
fixme:hlsl_parser:hlsl_parse Implicit conversion to the return type if needed,
error out if conversion not possible.
fixme:d3dcompiler:make_assignment Check for casts in the lhs.
fixme:hlsl_parser:declare_vars Complex initializers are not supported yet.
fixme:d3dcompiler:make_assignment Check for casts in the lhs.
fixme:hlsl_parser:hlsl_parse Array.
fixme:hlsl_parser:declare_vars Complex initializers are not supported yet.
fixme:hlsl_parser:declare_vars Complex initializers are not supported yet.
err:d3dcompiler:compile_shader HLSL shader parsing failed.
fixme:hlsl_parser:hlsl_parse Check for valued return on void function.
fixme:hlsl_parser:hlsl_parse Implicit conversion to the return type if needed,
error out if conversion not possible.
fixme:hlsl_parser:hlsl_parse Check for valued return on void function.
fixme:hlsl_parser:hlsl_parse Implicit conversion to the return type if needed,
error out if conversion not possible.
fixme:hlsl_parser:hlsl_parse Check for valued return on void function.
fixme:hlsl_parser:hlsl_parse Implicit conversion to the return type if needed,
error out if conversion not possible.
fixme:d3dcompiler:make_assignment Check for casts in the lhs.
fixme:hlsl_parser:declare_vars Complex initializers are not supported yet.
fixme:d3dcompiler:make_assignment Check for casts in the lhs.
fixme:hlsl_parser:hlsl_parse Array.
fixme:hlsl_parser:declare_vars Complex initializers are not supported yet.
fixme:hlsl_parser:declare_vars Complex initializers are not supported yet.
err:d3dcompiler:compile_shader HLSL shader parsing failed.
fixme:hlsl_parser:hlsl_parse Check for valued return on void function.
fixme:hlsl_parser:hlsl_parse Implicit conversion to the return type if needed,
error out if conversion not possible.
fixme:hlsl_parser:hlsl_parse Check for valued return on void function.
fixme:hlsl_parser:hlsl_parse Implicit conversion to the return type if needed,
error out if conversion not possible.
fixme:hlsl_parser:hlsl_parse Check for valued return on void function.
fixme:hlsl_parser:hlsl_parse Implicit conversion to the return type if needed,
error out if conversion not possible.
fixme:d3dcompiler:make_assignment Check for casts in the lhs.
fixme:hlsl_parser:declare_vars Complex initializers are not supported yet.
fixme:d3dcompiler:make_assignment Check for casts in the lhs.
fixme:hlsl_parser:hlsl_parse Array.
fixme:hlsl_parser:declare_vars Complex initializers are not supported yet.
fixme:hlsl_parser:declare_vars Complex initializers are not supported yet.
err:d3dcompiler:compile_shader HLSL shader parsing failed.
fixme:hlsl_parser:hlsl_parse Array.
fixme:hlsl_parser:declare_vars Complex initializers are not supported yet.
fixme:hlsl_parser:declare_vars Complex initializers are not supported yet.
fixme:hlsl_parser:hlsl_parse Array.
fixme:d3dcompiler:make_assignment Check for casts in the lhs.
fixme:d3dcompiler:make_assignment Check for casts in the lhs.
err:d3dcompiler:compile_shader HLSL shader parsing failed.
fixme:hlsl_parser:hlsl_parse Array.
fixme:hlsl_parser:declare_vars Complex initializers are not supported yet.
fixme:hlsl_parser:declare_vars Complex initializers are not supported yet.
fixme:hlsl_parser:hlsl_parse Array.
fixme:d3dcompiler:make_assignment Check for casts in the lhs.
fixme:d3dcompiler:make_assignment Check for casts in the lhs.
err:d3dcompiler:compile_shader HLSL shader parsing failed.
fixme:hlsl_parser:hlsl_parse Array.
fixme:hlsl_parser:declare_vars Complex initializers are not supported yet.
fixme:hlsl_parser:declare_vars Complex initializers are not supported yet.
fixme:hlsl_parser:hlsl_parse Array.
fixme:d3dcompiler:make_assignment Check for casts in the lhs.
fixme:d3dcompiler:make_assignment Check for casts in the lhs.
err:d3dcompiler:compile_shader HLSL shader parsing failed.
fixme:ntdll:NtIsProcessInJob stub: 0x314 (nil)
fixme:ntdll:NtIsProcessInJob stub: 0x314 (nil)
fixme:ntdll:NtIsProcessInJob stub: 0x314 (nil)
fixme:ntdll:NtIsProcessInJob stub: 0x314 (nil)
fixme:ntdll:NtIsProcessInJob stub: 0x314 (nil)
fixme:ntdll:NtIsProcessInJob stub: 0x314 (nil)
fixme:ntdll:NtIsProcessInJob stub: 0x314 (nil)
fixme:ntdll:NtIsProcessInJob stub: 0x314 (nil)
fixme:ntdll:NtIsProcessInJob stub: 0x314 (nil)
fixme:ntdll:NtIsProcessInJob stub: 0x314 (nil)
fixme:ntdll:NtIsProcessInJob stub: 0x314 (nil)
fixme:ntdll:NtIsProcessInJob stub: 0x314 (nil)
fixme:ntdll:NtIsProcessInJob stub: 0x314 (nil)
fixme:ntdll:NtIsProcessInJob stub: 0x314 (nil)
fixme:ntdll:NtIsProcessInJob stub: 0x314 (nil)
fixme:ntdll:NtIsProcessInJob stub: 0x314 (nil)
fixme:ntdll:NtIsProcessInJob stub: 0x314 (nil)
fixme:ntdll:NtIsProcessInJob stub: 0x314 (nil)
fixme:ntdll:NtIsProcessInJob stub: 0x314 (nil)
fixme:ntdll:NtIsProcessInJob stub: 0x314 (nil)
fixme:ntdll:NtIsProcessInJob stub: 0x314 (nil)
fixme:ntdll:NtIsProcessInJob stub: 0x314 (nil)
fixme:ntdll:NtIsProcessInJob stub: 0x314 (nil)
fixme:ntdll:NtIsProcessInJob stub: 0x314 (nil)
fixme:ntdll:NtIsProcessInJob stub: 0x314 (nil)
fixme:ntdll:NtIsProcessInJob stub: 0x314 (nil)
fixme:ntdll:NtIsProcessInJob stub: 0x314 (nil)
fixme:ntdll:NtIsProcessInJob stub: 0x314 (nil)
fixme:ntdll:NtIsProcessInJob stub: 0x314 (nil)
fixme:ntdll:NtIsProcessInJob stub: 0x314 (nil)
fixme:ntdll:NtIsProcessInJob stub: 0x314 (nil)
fixme:ntdll:NtIsProcessInJob stub: 0x314 (nil)
fixme:ntdll:NtIsProcessInJob stub: 0x314 (nil)
fixme:ntdll:NtIsProcessInJob stub: 0x314 (nil)
fixme:ntdll:NtIsProcessInJob stub: 0x314 (nil)
fixme:ntdll:NtIsProcessInJob stub: 0x314 (nil)
fixme:process:GetSystemFirmwareTable (1381190978 0 (nil) 0):stub
fixme:wbemprox:client_security_SetBlanket 0x7df4067c, 0xbfbb8f8, 10, 0, (null),
3, 3, (nil), 0x00000000
fixme:wbemprox:client_security_Release 0x7df4067c
fixme:process:GetSystemFirmwareTable (1381190978 0 (nil) 0):stub
fixme:wbemprox:client_security_SetBlanket 0x7df4067c, 0xbfbb8c8, 10, 0, (null),
3, 3, (nil), 0x00000000
fixme:wbemprox:client_security_Release 0x7df4067c
fixme:netapi32:NetUserGetInfo Level 2 is not implemented
fixme:actctx:parse_depend_manifests Could not find dependent assembly
L"Microsoft.Windows.Common-Controls" (6.0.0.0)
p11-kit: couldn't load module:
/usr/lib/i386-linux-gnu/pkcs11/gnome-keyring-pkcs11.so:
/usr/lib/i386-linux-gnu/pkcs11/gnome-keyring-pkcs11.so: no s’ha pogut obrir el
fitxer objecte compartit: El fitxer o directori no existeix
fixme:process:SetProcessDEPPolicy (3): stub
fixme:heap:RtlSetHeapInformation (nil) 1 (nil) 0 stub
fixme:ntdll:NtIsProcessInJob stub: 0xffffffff (nil)
fixme:thread:GetThreadPreferredUILanguages 56, 0x33ecb0, (nil) 0x33ecb4
fixme:winsock:WSALookupServiceBeginW (0x33ed04 0x00000ff0 0x33ed4c) Stub!
fixme:iphlpapi:NotifyAddrChange (Handle 0x33ebe8, overlapped 0x98dd68): stub
fixme:win:RegisterDeviceNotificationW (hwnd=0x104ba,
filter=0x33edac,flags=0x00000000) returns a fake device notification handle!
fixme:win:RegisterDeviceNotificationW (hwnd=0x104ba,
filter=0x33edac,flags=0x00000000) returns a fake device notification handle!
fixme:file:FindFirstFileExW flags not implemented 0x00000002
fixme:win:EnumDisplayDevicesW ((null),0,0x33e738,0x00000000), stub!
fixme:module:load_library unsupported flag(s) used (flags: 0x00000800)
fixme:ver:GetCurrentPackageId (0x1a4e124 (nil)): stub
fixme:ver:GetCurrentPackageId (0x1b5e9d8 (nil)): stub
fixme:advapi:RegisterTraceGuidsW (0x10156000, 0x1255da58,
{3dada31d-19ef-4dc1-b345-037927193422}, 1, 0x1252d314, (null), (null),
0x1255da70): stub
fixme:dwmapi:DwmIsCompositionEnabled 0x33e3d4
fixme:wtsapi:WTSRegisterSessionNotification Stub 0x104ce 0x00000000
fixme:actctx:parse_depend_manifests Could not find dependent assembly
L"Microsoft.Windows.Common-Controls" (6.0.0.0)
p11-kit: couldn't load module:
/usr/lib/i386-linux-gnu/pkcs11/gnome-keyring-pkcs11.so:
/usr/lib/i386-linux-gnu/pkcs11/gnome-keyring-pkcs11.so: no s’ha pogut obrir el
fitxer objecte compartit: El fitxer o directori no existeix
fixme:process:SetProcessDEPPolicy (3): stub
fixme:heap:RtlSetHeapInformation (nil) 1 (nil) 0 stub
fixme:ntdll:NtIsProcessInJob stub: 0xffffffff (nil)
fixme:thread:NtQueryInformationThread Cannot get kerneltime or usertime of
other threads
fixme:module:load_library unsupported flag(s) used (flags: 0x00000800)
fixme:d3d9:D3DPERF_GetStatus (void) : stub
fixme:win:EnumDisplayDevicesW ((null),0,0x33dbf8,0x00000000), stub!
fixme:d3d9:D3DPERF_GetStatus (void) : stub
fixme:d3d9:d3d9_device_CreateTexture Resource sharing not implemented,
*shared_handle (nil).
fixme:msctf:InputProcessorProfileMgr_GetActiveProfile
(0x1c4628)->({34745c63-b2f0-4784-8b67-5e12c8701a31} 0x33eb04)
fixme:ole:RemUnknown_QueryInterface No interface for iid
{00000019-0000-0000-c000-000000000046}
fixme:ntdll:NtIsProcessInJob stub: 0x204 (nil)
fixme:d3d9:d3d9_device_CreateTexture Resource sharing not implemented,
*shared_handle (nil).
fixme:ntdll:NtIsProcessInJob stub: 0x214 (nil)
fixme:ntdll:NtIsProcessInJob stub: 0x21c (nil)
fixme:ntdll:NtIsProcessInJob stub: 0x220 (nil)
fixme:actctx:parse_depend_manifests Could not find dependent assembly
L"Microsoft.Windows.Common-Controls" (6.0.0.0)
fixme:ntdll:NtIsProcessInJob stub: 0x224 (nil)
fixme:ntdll:NtIsProcessInJob stub: 0x22c (nil)
fixme:ntdll:NtIsProcessInJob stub: 0x234 (nil)
fixme:ntdll:NtIsProcessInJob stub: 0x23c (nil)
fixme:hlsl_parser:hlsl_parse Check for valued return on void function.
fixme:hlsl_parser:hlsl_parse Implicit conversion to the return type if needed,
error out if conversion not possible.
fixme:d3dcompiler:make_assignment Check for casts in the lhs.
fixme:hlsl_parser:declare_vars Complex initializers are not supported yet.
fixme:d3dcompiler:make_assignment Check for casts in the lhs.
fixme:hlsl_parser:declare_vars Complex initializers are not supported yet.
err:d3dcompiler:compile_shader HLSL shader parsing failed.
fixme:hlsl_parser:hlsl_parse Check for valued return on void function.
fixme:hlsl_parser:hlsl_parse Implicit conversion to the return type if needed,
error out if conversion not possible.
fixme:d3dcompiler:make_assignment Check for casts in the lhs.
fixme:hlsl_parser:declare_vars Complex initializers are not supported yet.
fixme:d3dcompiler:make_assignment Check for casts in the lhs.
fixme:hlsl_parser:declare_vars Complex initializers are not supported yet.
err:d3dcompiler:compile_shader HLSL shader parsing failed.
fixme:hlsl_parser:hlsl_parse Check for valued return on void function.
fixme:hlsl_parser:hlsl_parse Implicit conversion to the return type if needed,
error out if conversion not possible.
fixme:d3dcompiler:make_assignment Check for casts in the lhs.
fixme:hlsl_parser:declare_vars Complex initializers are not supported yet.
fixme:d3dcompiler:make_assignment Check for casts in the lhs.
fixme:hlsl_parser:declare_vars Complex initializers are not supported yet.
err:d3dcompiler:compile_shader HLSL shader parsing failed.
fixme:hlsl_parser:hlsl_parse Check for valued return on void function.
fixme:hlsl_parser:hlsl_parse Implicit conversion to the return type if needed,
error out if conversion not possible.
fixme:hlsl_parser:declare_vars Complex initializers are not supported yet.
fixme:hlsl_parser:hlsl_parse Array.
fixme:d3dcompiler:make_assignment Check for casts in the lhs.
err:d3dcompiler:compile_shader HLSL shader parsing failed.
fixme:hlsl_parser:hlsl_parse Check for valued return on void function.
fixme:hlsl_parser:hlsl_parse Implicit conversion to the return type if needed,
error out if conversion not possible.
fixme:hlsl_parser:declare_vars Complex initializers are not supported yet.
fixme:hlsl_parser:hlsl_parse Array.
fixme:d3dcompiler:make_assignment Check for casts in the lhs.
err:d3dcompiler:compile_shader HLSL shader parsing failed.
fixme:hlsl_parser:hlsl_parse Check for valued return on void function.
fixme:hlsl_parser:hlsl_parse Implicit conversion to the return type if needed,
error out if conversion not possible.
fixme:hlsl_parser:declare_vars Complex initializers are not supported yet.
fixme:hlsl_parser:hlsl_parse Array.
fixme:d3dcompiler:make_assignment Check for casts in the lhs.
err:d3dcompiler:compile_shader HLSL shader parsing failed.
fixme:dwmapi:DwmGetCompositionTimingInfo ((nil) 0x33d0d4)
fixme:d3d:state_lastpixel Last Pixel Drawing Disabled, not handled yet
p11-kit: couldn't load module:
/usr/lib/i386-linux-gnu/pkcs11/gnome-keyring-pkcs11.so:
/usr/lib/i386-linux-gnu/pkcs11/gnome-keyring-pkcs11.so: no s’ha pogut obrir el
fitxer objecte compartit: El fitxer o directori no existeix
fixme:process:SetProcessDEPPolicy (3): stub
fixme:heap:RtlSetHeapInformation (nil) 1 (nil) 0 stub
fixme:ntdll:NtIsProcessInJob stub: 0xffffffff (nil)
fixme:advapi:RegisterTraceGuidsW (0x10156000, 0x1255da58,
{3dada31d-19ef-4dc1-b345-037927193422}, 1, 0x1252d314, (null), (null),
0x1255da70): stub
fixme:gdi:GdiInitializeLanguagePack stub
fixme:module:load_library unsupported flag(s) used (flags: 0x00000800)
fixme:ver:GetCurrentPackageId (0x13fe9d8 (nil)): stub
fixme:ver:GetCurrentPackageId (0x12fe9d8 (nil)): stub
fixme:ver:GetCurrentPackageId (0x11fe9d8 (nil)): stub
fixme:ntdll:NtLockFile I/O completion on lock not implemented yet
fixme:ntdll:NtIsProcessInJob stub: 0x23c (nil)
fixme:ntdll:NtIsProcessInJob stub: 0x140 (nil)
fixme:ntdll:NtIsProcessInJob stub: 0x23c (nil)
fixme:ntdll:NtIsProcessInJob stub: 0x148 (nil)
fixme:ntdll:NtIsProcessInJob stub: 0x23c (nil)
fixme:ntdll:NtIsProcessInJob stub: 0x150 (nil)
fixme:ntdll:NtIsProcessInJob stub: 0x23c (nil)
fixme:ntdll:NtIsProcessInJob stub: 0x158 (nil)
fixme:ntdll:NtIsProcessInJob stub: 0x23c (nil)
fixme:ntdll:NtIsProcessInJob stub: 0x160 (nil)
fixme:ntdll:NtIsProcessInJob stub: 0x304 (nil)
fixme:ntdll:NtIsProcessInJob stub: 0x304 (nil)
fixme:ntdll:NtIsProcessInJob stub: 0x304 (nil)
fixme:ntdll:NtIsProcessInJob stub: 0x304 (nil)
fixme:ntdll:NtIsProcessInJob stub: 0x304 (nil)
fixme:hlsl_parser:hlsl_parse Check for valued return on void function.
fixme:hlsl_parser:hlsl_parse Implicit conversion to the return type if needed,
error out if conversion not possible.
fixme:d3dcompiler:make_assignment Check for casts in the lhs.
fixme:hlsl_parser:declare_vars Complex initializers are not supported yet.
fixme:d3dcompiler:make_assignment Check for casts in the lhs.
fixme:hlsl_parser:declare_vars Complex initializers are not supported yet.
err:d3dcompiler:compile_shader HLSL shader parsing failed.
fixme:hlsl_parser:hlsl_parse Check for valued return on void function.
fixme:hlsl_parser:hlsl_parse Implicit conversion to the return type if needed,
error out if conversion not possible.
fixme:d3dcompiler:make_assignment Check for casts in the lhs.
fixme:hlsl_parser:declare_vars Complex initializers are not supported yet.
fixme:d3dcompiler:make_assignment Check for casts in the lhs.
fixme:hlsl_parser:declare_vars Complex initializers are not supported yet.
err:d3dcompiler:compile_shader HLSL shader parsing failed.
fixme:hlsl_parser:hlsl_parse Check for valued return on void function.
fixme:hlsl_parser:hlsl_parse Implicit conversion to the return type if needed,
error out if conversion not possible.
fixme:d3dcompiler:make_assignment Check for casts in the lhs.
fixme:hlsl_parser:declare_vars Complex initializers are not supported yet.
fixme:d3dcompiler:make_assignment Check for casts in the lhs.
fixme:hlsl_parser:declare_vars Complex initializers are not supported yet.
err:d3dcompiler:compile_shader HLSL shader parsing failed.
fixme:hlsl_parser:declare_vars Complex initializers are not supported yet.
fixme:hlsl_parser:hlsl_parse Array.
fixme:d3dcompiler:make_assignment Check for casts in the lhs.
err:d3dcompiler:compile_shader HLSL shader parsing failed.
fixme:hlsl_parser:declare_vars Complex initializers are not supported yet.
fixme:hlsl_parser:hlsl_parse Array.
fixme:d3dcompiler:make_assignment Check for casts in the lhs.
err:d3dcompiler:compile_shader HLSL shader parsing failed.
fixme:hlsl_parser:declare_vars Complex initializers are not supported yet.
fixme:hlsl_parser:hlsl_parse Array.
fixme:d3dcompiler:make_assignment Check for casts in the lhs.
err:d3dcompiler:compile_shader HLSL shader parsing failed.
fixme:hlsl_parser:hlsl_parse Check for valued return on void function.
fixme:hlsl_parser:hlsl_parse Implicit conversion to the return type if needed,
error out if conversion not possible.
fixme:hlsl_parser:hlsl_parse Check for valued return on void function.
fixme:hlsl_parser:hlsl_parse Implicit conversion to the return type if needed,
error out if conversion not possible.
fixme:hlsl_parser:hlsl_parse Check for valued return on void function.
fixme:hlsl_parser:hlsl_parse Implicit conversion to the return type if needed,
error out if conversion not possible.
fixme:d3dcompiler:make_assignment Check for casts in the lhs.
fixme:hlsl_parser:declare_vars Complex initializers are not supported yet.
fixme:d3dcompiler:make_assignment Check for casts in the lhs.
fixme:hlsl_parser:hlsl_parse Array.
fixme:hlsl_parser:declare_vars Complex initializers are not supported yet.
fixme:hlsl_parser:declare_vars Complex initializers are not supported yet.
err:d3dcompiler:compile_shader HLSL shader parsing failed.
fixme:hlsl_parser:hlsl_parse Check for valued return on void function.
fixme:hlsl_parser:hlsl_parse Implicit conversion to the return type if needed,
error out if conversion not possible.
fixme:hlsl_parser:hlsl_parse Check for valued return on void function.
fixme:hlsl_parser:hlsl_parse Implicit conversion to the return type if needed,
error out if conversion not possible.
fixme:hlsl_parser:hlsl_parse Check for valued return on void function.
fixme:hlsl_parser:hlsl_parse Implicit conversion to the return type if needed,
error out if conversion not possible.
fixme:d3dcompiler:make_assignment Check for casts in the lhs.
fixme:hlsl_parser:declare_vars Complex initializers are not supported yet.
fixme:d3dcompiler:make_assignment Check for casts in the lhs.
fixme:hlsl_parser:hlsl_parse Array.
fixme:hlsl_parser:declare_vars Complex initializers are not supported yet.
fixme:hlsl_parser:declare_vars Complex initializers are not supported yet.
err:d3dcompiler:compile_shader HLSL shader parsing failed.
fixme:hlsl_parser:hlsl_parse Check for valued return on void function.
fixme:hlsl_parser:hlsl_parse Implicit conversion to the return type if needed,
error out if conversion not possible.
fixme:hlsl_parser:hlsl_parse Check for valued return on void function.
fixme:hlsl_parser:hlsl_parse Implicit conversion to the return type if needed,
error out if conversion not possible.
fixme:hlsl_parser:hlsl_parse Check for valued return on void function.
fixme:hlsl_parser:hlsl_parse Implicit conversion to the return type if needed,
error out if conversion not possible.
fixme:d3dcompiler:make_assignment Check for casts in the lhs.
fixme:hlsl_parser:declare_vars Complex initializers are not supported yet.
fixme:d3dcompiler:make_assignment Check for casts in the lhs.
fixme:hlsl_parser:hlsl_parse Array.
fixme:hlsl_parser:declare_vars Complex initializers are not supported yet.
fixme:hlsl_parser:declare_vars Complex initializers are not supported yet.
err:d3dcompiler:compile_shader HLSL shader parsing failed.
fixme:hlsl_parser:hlsl_parse Array.
fixme:hlsl_parser:declare_vars Complex initializers are not supported yet.
fixme:hlsl_parser:declare_vars Complex initializers are not supported yet.
fixme:hlsl_parser:hlsl_parse Array.
fixme:d3dcompiler:make_assignment Check for casts in the lhs.
fixme:d3dcompiler:make_assignment Check for casts in the lhs.
err:d3dcompiler:compile_shader HLSL shader parsing failed.
fixme:hlsl_parser:hlsl_parse Array.
fixme:hlsl_parser:declare_vars Complex initializers are not supported yet.
fixme:hlsl_parser:declare_vars Complex initializers are not supported yet.
fixme:hlsl_parser:hlsl_parse Array.
fixme:d3dcompiler:make_assignment Check for casts in the lhs.
fixme:d3dcompiler:make_assignment Check for casts in the lhs.
err:d3dcompiler:compile_shader HLSL shader parsing failed.
fixme:hlsl_parser:hlsl_parse Array.
fixme:hlsl_parser:declare_vars Complex initializers are not supported yet.
fixme:hlsl_parser:declare_vars Complex initializers are not supported yet.
fixme:hlsl_parser:hlsl_parse Array.
fixme:d3dcompiler:make_assignment Check for casts in the lhs.
fixme:d3dcompiler:make_assignment Check for casts in the lhs.
err:d3dcompiler:compile_shader HLSL shader parsing failed.
fixme:ntdll:NtIsProcessInJob stub: 0x304 (nil)
fixme:ntdll:NtIsProcessInJob stub: 0x304 (nil)
fixme:ntdll:NtIsProcessInJob stub: 0x304 (nil)
fixme:ntdll:NtIsProcessInJob stub: 0x304 (nil)
fixme:ntdll:NtIsProcessInJob stub: 0x304 (nil)
fixme:ntdll:NtIsProcessInJob stub: 0x304 (nil)
fixme:ntdll:NtIsProcessInJob stub: 0x304 (nil)
fixme:hlsl_parser:hlsl_parse Check for valued return on void function.
fixme:hlsl_parser:hlsl_parse Implicit conversion to the return type if needed,
error out if conversion not possible.
fixme:d3dcompiler:make_assignment Check for casts in the lhs.
fixme:hlsl_parser:declare_vars Complex initializers are not supported yet.
fixme:d3dcompiler:make_assignment Check for casts in the lhs.
err:d3dcompiler:compile_shader HLSL shader parsing failed.
fixme:hlsl_parser:hlsl_parse Check for valued return on void function.
fixme:hlsl_parser:hlsl_parse Implicit conversion to the return type if needed,
error out if conversion not possible.
fixme:d3dcompiler:make_assignment Check for casts in the lhs.
fixme:hlsl_parser:declare_vars Complex initializers are not supported yet.
fixme:d3dcompiler:make_assignment Check for casts in the lhs.
err:d3dcompiler:compile_shader HLSL shader parsing failed.
fixme:hlsl_parser:hlsl_parse Check for valued return on void function.
fixme:hlsl_parser:hlsl_parse Implicit conversion to the return type if needed,
error out if conversion not possible.
fixme:d3dcompiler:make_assignment Check for casts in the lhs.
fixme:hlsl_parser:declare_vars Complex initializers are not supported yet.
fixme:d3dcompiler:make_assignment Check for casts in the lhs.
err:d3dcompiler:compile_shader HLSL shader parsing failed.
fixme:hlsl_parser:hlsl_parse Array.
fixme:d3dcompiler:make_assignment Check for casts in the lhs.
err:d3dcompiler:compile_shader HLSL shader parsing failed.
fixme:hlsl_parser:hlsl_parse Array.
fixme:d3dcompiler:make_assignment Check for casts in the lhs.
err:d3dcompiler:compile_shader HLSL shader parsing failed.
fixme:hlsl_parser:hlsl_parse Array.
fixme:d3dcompiler:make_assignment Check for casts in the lhs.
err:d3dcompiler:compile_shader HLSL shader parsing failed.
fixme:ntdll:NtIsProcessInJob stub: 0x304 (nil)
fixme:d3dcompiler:make_assignment Check for casts in the lhs.
fixme:hlsl_parser:declare_vars Complex initializers are not supported yet.
fixme:hlsl_parser:declare_vars Complex initializers are not supported yet.
fixme:d3dcompiler:make_assignment Check for casts in the lhs.
fixme:d3dcompiler:make_assignment Check for casts in the lhs.
fixme:hlsl_parser:declare_vars Complex initializers are not supported yet.
err:d3dcompiler:compile_shader HLSL shader parsing failed.
fixme:d3dcompiler:make_assignment Check for casts in the lhs.
fixme:hlsl_parser:declare_vars Complex initializers are not supported yet.
fixme:hlsl_parser:declare_vars Complex initializers are not supported yet.
fixme:d3dcompiler:make_assignment Check for casts in the lhs.
fixme:d3dcompiler:make_assignment Check for casts in the lhs.
fixme:hlsl_parser:declare_vars Complex initializers are not supported yet.
err:d3dcompiler:compile_shader HLSL shader parsing failed.
fixme:d3dcompiler:make_assignment Check for casts in the lhs.
fixme:hlsl_parser:declare_vars Complex initializers are not supported yet.
fixme:hlsl_parser:declare_vars Complex initializers are not supported yet.
fixme:d3dcompiler:make_assignment Check for casts in the lhs.
fixme:d3dcompiler:make_assignment Check for casts in the lhs.
fixme:hlsl_parser:declare_vars Complex initializers are not supported yet.
err:d3dcompiler:compile_shader HLSL shader parsing failed.
fixme:hlsl_parser:declare_vars Complex initializers are not supported yet.
fixme:hlsl_parser:hlsl_parse Array.
fixme:d3dcompiler:make_assignment Check for casts in the lhs.
err:d3dcompiler:compile_shader HLSL shader parsing failed.
fixme:hlsl_parser:declare_vars Complex initializers are not supported yet.
fixme:hlsl_parser:hlsl_parse Array.
fixme:d3dcompiler:make_assignment Check for casts in the lhs.
err:d3dcompiler:compile_shader HLSL shader parsing failed.
fixme:hlsl_parser:declare_vars Complex initializers are not supported yet.
fixme:hlsl_parser:hlsl_parse Array.
fixme:d3dcompiler:make_assignment Check for casts in the lhs.
err:d3dcompiler:compile_shader HLSL shader parsing failed.
fixme:ntdll:NtIsProcessInJob stub: 0x304 (nil)
fixme:ntdll:NtIsProcessInJob stub: 0x304 (nil)
fixme:system:SystemParametersInfoW Unknown action: 116
--
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=23327
Summary: Caesar 3: autorun image missing
Product: Wine
Version: 1.2-rc4
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: trivial
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: felipemoraesbr(a)gmail.com
I´m using Ubuntu Lucid Lynx with nvidia 9500 GT video card, my caesar 3 is br
version, but i do not know if this matters.
Will try to post some kind of log later.
--
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=40976
Bug ID: 40976
Summary: Need For Speed: Most Wanted (2012) needs
d3d11_device_CreateTexture1D implementation
Product: Wine
Version: 1.9.14
Hardware: x86-64
OS: Linux
Status: NEW
Severity: normal
Priority: P2
Component: directx-d3d
Assignee: wine-bugs(a)winehq.org
Reporter: andrey.goosev(a)gmail.com
Distribution: ---
fixme:d3d11:d3d11_device_CreateTexture1D iface 0x13bc88, desc 0x30b314, data
(nil), texture 0x30b344 stub!
wine-1.9.14-112-gfec0b69
--
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=30141
Bug #: 30141
Summary: 1848 (strategy game) becomes unresponsive after the
first mouse click
Product: Wine
Version: 1.4
Platform: x86
URL: http://www.gamershell.com/download_17042.shtml
OS/Version: Linux
Status: NEW
Keywords: download, regression
Severity: normal
Priority: P2
Component: directx-d3d
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: gyebro69(a)gmail.com
CC: hverbeet(a)gmail.com
Classification: Unclassified
Regression SHA1: 94c0da184e18252ca2df7f9f462e9a4df9c5f2df
1848 is a freeware, historical strategy game taking place during the Hungarian
Independence War of 1848/49. The next game from the developer is also affected
by this bug (For the Glory!).
The problem: a new game can be started from the menus, but as soon as I click
with the mouse on the game screen, the game becomes unresponsive: music and
animations keep playing but the game no longer responds to mouse or keyboard.
Terminal output isn't too informative:
>fixme:win:EnumDisplayDevicesW ((null),0,0x32ec20,0x00000000), stub!
>fixme:x11drv:X11DRV_desktop_SetCurrentMode Cannot change screen BPP from 32 to 16
>fixme:ddraw:ddraw7_WaitForVerticalBlank iface 0x14dc08, flags 0x1, event (nil) stub!
The problem appeared in Wine-1.3.34 and is still present as of
wine-1.4-78-g94953f1.
94c0da184e18252ca2df7f9f462e9a4df9c5f2df is the first bad commit
commit 94c0da184e18252ca2df7f9f462e9a4df9c5f2df
Author: Henri Verbeet <hverbeet(a)codeweavers.com>
Date: Thu Dec 1 07:31:41 2011 +0100
wined3d: Create a PBO in surface_load_location() even if SFLAG_INSYSMEM is
already set.
In the longer term, sysmem and pbo should be separate resource locations.
:040000 040000 0ea129726096c1508557eacfc8272cf884f0c61b
4e1bfdfeccfc95e0b700f75d6841dbb7cc1889da M dlls
Other bugs related to this commit: bug #29287, bug #29613.
Although the commit can be reverted cleanly on current git, I noticed that
- reverting on 1.4 doesn't fix the problem for some reason
- reverting on 1.3.37 does fixes the problem
Steps to reproduce the problem:
1. install the game as usual.
2. start the game with 1848.exe
3. in the main menu choose <Single Player>, then select the Tutorial Campaign
and click on the <Start> button, located in the lower right corner of the
screen.
4. close the Events window and left click anywhere on the main game screen (not
on the minimap). The game no longer responds to mouse or keyboard input.
Fedora 16
Nvidia 250 / driver 290.10
X.Org X Server 1.11.4
--
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=31829
Bug #: 31829
Summary: Ad Astra fails to start when music enabled
Product: Wine
Version: 1.5.1
Platform: x86
URL: http://www.gamedev.net/page/community/gds/view/_/actio
n/ad-astra-r174
OS/Version: Linux
Status: NEW
Keywords: download, regression
Severity: minor
Priority: P2
Component: directx-dmusic
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: gyebro69(a)gmail.com
CC: aeikum(a)codeweavers.com
Classification: Unclassified
Regression SHA1: 5e522a1d1c7c84a4c89f67770ff391f05662d35b
Created attachment 41888
--> http://bugs.winehq.org/attachment.cgi?id=41888
terminal output
Ad Astra is a freeware space exploration game. On startup the game shows a
black screen for a moment, then it quits (without a crash dialog/backtrace).
Steps to reproduce the problem:
1. unpack the archive and start the game with AdAstraDX9.exe.
According to my testing, the problem appeared in Wine 1.5.1, and is still
present in 1.5.14.
The result of the regression test:
5e522a1d1c7c84a4c89f67770ff391f05662d35b is the first bad commit
commit 5e522a1d1c7c84a4c89f67770ff391f05662d35b
Author: Andrew Eikum <aeikum(a)codeweavers.com>
Date: Mon Mar 19 07:35:17 2012 -0500
dmloader: Don't claim partial success when loading fails.
:040000 040000 29041b7005a7e7e930ca59d3ca0383b696182b6a
0e98b8be7dce48a9b624f758fc36a6e401e335c5 M dlls
Reverting the patch on 1.5.14 fixes the startup problem.
The game uses midi files for background music, some midi files are located in
the /midi directory.
Running Timidity before starting the game doesn't help.
As a workaround for the startup problem, either remove those midi files or
install native directmusic via winetricks.
Let me know if you need a debug log (+dmloader,...)
--
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=39566
Bug ID: 39566
Summary: Missing player model on Raiden III
Product: Wine
Version: 1.7.54
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: winehq(a)iooioio.orion.uberspace.de
Distribution: ---
Created attachment 52715
--> https://bugs.winehq.org/attachment.cgi?id=52715
Console output
Most of the game seems to render fine but occasionally models lose their
textures and become white and most obviously the player's ship is completely
invisible (see screenshot).
I realise this may be a driver issue so would appreciate feedback from others.
I've tried StrictDrawOrdering but that didn't help.
I'm running Raiden III Digital Edition (2.0.0.3) from GOG.com.
My specs:
Wine 1.7.54 (64bit)
Linux Mint 17.2 (3.19.0-26-generic)
Proprietary nVIDIA drivers (352.55)
GeForce GTX 960
I'm attaching a screenshot and a sanitised log. The original log file was
almost 200k lines long after roughly 15 seconds of gameplay!
--
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=25229
Summary: rejected test cases never go back to queue
Product: WineHQ Apps Database
Version: unspecified
Platform: All
OS/Version: All
Status: UNCONFIRMED
Severity: major
Priority: P2
Component: appdb-unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: virtuousfox(a)gmail.com
when test case is rejected instead of outright deleted it does not go back into
queue to be reviewed even after being edited by submitter.
this issue was discussed sometime year or two ago but apparently never was
fixed.
example here: user have submitted result and it got rejected for better
detailing, it was edited by submiter and mail notification was sent to me.
"test result" is
http://appdb.winehq.org/objectManager.php?sClass=version&iId=4976&iTestingI…
but it not anywhere in my queue list. i want to reject it second time anyway
since submitter didn't bothered to read damn notes and howtos at app test page
again or look at other, proper submits but i can't even do that now since it's
not in queue and i can't do anything with it.
--
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=38515
Bug ID: 38515
Summary: The Forest: Pixels are flickering on some textures
Product: Wine
Version: 1.7.38
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: sworddragon2(a)aol.com
Distribution: ---
On some textures (for example the arms on climbing a rope) I'm seeing that
several pixels over the complete texture are flickering.
--
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=38634
Bug ID: 38634
Summary: The Forest: Some textures look like 8-bit color mode
at night
Product: Wine
Version: 1.7.38
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: sworddragon2(a)aol.com
Distribution: ---
At night the game looks mostly like it switched to a 8-bit color mode. For
example this can be easily seen on trees. Here is a screenshot how it looks at
night: http://img4.picload.org/image/iodolrl/2015_05_15_23_58_41.png
--
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=39036
Bug ID: 39036
Summary: The Forest: Screen can freeze temporary on loading
Product: Wine
Version: 1.7.44
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: sworddragon2(a)aol.com
Distribution: ---
For example if a new game in single player gets started and the axe in the
loading screen stops moving after a few seconds and the game gets then
minimized as soon as it gets recovered the screen will temporary freeze and
showing the state of the desktop directly before the game got recovered until
the game has finished loading.
--
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=39052
Bug ID: 39052
Summary: The Forest: Graphic issue on some text
Product: Wine
Version: 1.7.44
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: sworddragon2(a)aol.com
Distribution: ---
Created attachment 52024
--> https://bugs.winehq.org/attachment.cgi?id=52024
Screenshot with the graphic issue
On starting a new game the game shows the hint that the initial scene can be
skipped with pressing space but sometimes the word space (which is drawn on a
square) is black as shown in the screenshot.
--
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=39061
Bug ID: 39061
Summary: The Forest: Sensitivity of the mouse increases
sometimes
Product: Wine
Version: 1.7.44
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: sworddragon2(a)aol.com
Distribution: ---
On opening the survival book and selecting a blueprint sometimes the
sensitivity of the mouse does then increase drastically making it impossible to
navigate controlled anymore. A workaround is to press ESC to go into the pause
menu and then to continue the game but the next selection of a blueprint does
then cause this issue again.
--
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=39062
Bug ID: 39062
Summary: The Forest: Caves are lighted
Product: Wine
Version: 1.7.44
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: sworddragon2(a)aol.com
Distribution: ---
Created attachment 52031
--> https://bugs.winehq.org/attachment.cgi?id=52031
Screenshot with a lighted cave
On entering a cave I'm noticing that instead of being dark the caves are
lighted as shown in this screenshot.
--
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=39868
Bug ID: 39868
Summary: The Forest: White pixels are appearing on some objects
Product: Wine
Version: 1.8
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: sworddragon2(a)aol.com
Distribution: ---
Created attachment 53224
--> https://bugs.winehq.org/attachment.cgi?id=53224
White pixels on some objects
As shown in the screenshot in the attachments some objects have white pixels.
On some objects it looks like a grid and on distant ones white stripes are
sometimes visible on the edge.
--
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=40272
Bug ID: 40272
Summary: The Forest: Chat doesn't work
Product: Wine
Version: 1.8
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: sworddragon2(a)aol.com
Distribution: ---
On joining a multiplayer game and pressing enter the cursor does blink in the
bottom center of the window but typing any characters doesn't show them then.
Also messages from other players seems to be not visible too.
--
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=37830
Bug ID: 37830
Summary: SteuerSparErklärung 2015: Installing with the
"USB-Installation" method fails
Product: Wine
Version: 1.6.2
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: jre.winesim(a)gmail.com
Distribution: ---
Created attachment 50377
--> https://bugs.winehq.org/attachment.cgi?id=50377
Terminal output (fixme+all,err+all)
Background:
===========
SteuerSparErklärung (SSE) is a german tax program. It offers a "portable"
installation method called "USB-Installation". Beneath the installation on a
flash drive, this method especially targets a privacy oriented installation. If
no external flash drive is connected, the internal hard drive is used, but the
program is installed to a separate folder (i.e. not in "Program Files") and no
registry entries are made.
Bug description:
================
I've put translations in [brackets].
The installation of SSE 2015 with the "USB-Installation" method fails. The
installer displays an error message:
Fehler bei der Installation [Installation error]
Path not found
(Fehler code: 3) [Error code]
Die Installation von SteuerSparErklärung 2015 Portable wird abgebrochen. [The
installation of "SteuerSparErklärung 2015 Portable" is getting cancelled."]
I attached the terminal output (fixme+all,err+all).
Further information:
====================
It doesn't matter if a USB flash drive is connected (and seen in wine as drive
E:) or not. Not connecting one is perfectly ok under windows.
SSE2015 officially supports WinXP.
The following line is only shown for this installation method, but not for the
default (no idea if it is relevant):
fixme:mountmgr:harddisk_ioctl Unsupported ioctl 2d1400 (device=2d access=0
func=500 method=0)
If I try with wine as Win7 I additionally get these lines (again not claiming
that they are important):
fixme:shell:SHGetLocalizedName L"C:\\users" 0x33f2da 260 0x33f2cc: stub
fixme:shell:SHGetLocalizedName L"C:\\users\\jens" 0x33f2da 260 0x33f2cc: stub
fixme:shell:SHGetLocalizedName L"C:\\users\\jens\\My Documents" 0x33f2da 260
0x33f2cc: stub
fixme:shell:SHGetLocalizedName L"C:\\users\\jens\\My
Documents\\Steuerf\00e4lle" 0x33f2da 260 0x33f2cc: stub
So far I could not find a workaround. For other reasons I normally use
"winetricks crypt32 riched20 vcrun2013" for SSE 2015.
System:
=======
Debian GNU/Linux 8.0 "Jessie" x86_64 + Debian's wine-development 1.7.33-1.
New, clean wineprefix.
The problem also exists under wine 1.6.2 and other distros (Arch Linux x86_64,
Peppermint Five).
Reproduce:
==========
Download installer (206 MB):
http://www.steuertipps.de/gateway/softwareGateway.cfm?folder=demo&filename=…
sha1sum SSEStandard_20.24.112.exe
3349b7b79d7ae71194fe75488233400da89be73b SSEStandard_20.24.112.exe
Short version:
--------------
OK
Installation starten
USB-Installation
OK
Weiter
Weiter
Tick "Testversion installieren (mit Lohnsteuer-Ermäßigung)"
Weiter
Choose "Ich akzeptiere die Bedingungen der Lizenzvereinbarung"
Weiter
Long version:
-------------
- Click "OK" in "WinZip Self-Extractor" [... Keep all windows open until the
installation is complete! ...].
- Click "Installation starten" in the next window (SteuerSparErklärung 2015:
Installation).
- Click "USB-Installation" [Installs on a USB flash drive] in the next window
(Installation >SteuerSparErklärung 2015<).
- Confirm "Informationen" [No storage device was found at the USB connector!
Hard disk C: was chosen as drive for the installation. Click on "Ändern"
[Change] in the installation window, to select another drive.].
- Click "Weiter >" [Continue] [this installs to
C:\SSE2015Portable\App\Steuerprogramm] in the next window (USB-Installation).
- Click "Weiter >" [Continue] in the next window (USB-Installation/Hinweise zur
USB-Installation) [Hints for the USB installation: the program will be
installed/copied completely to an external medium. There will be absolutely no
data saved on your computer. Therefore usage is possible on any Windows
computer. Installing on USB comes with some limitations: No links on the
desktop, No starter entries, No registration of the file types and therefore no
possibility to open a tax data file with a double click. ... You can always
save your data to a USB flash-drive, even if you've chosen the installation on
a hard drive. ...].
- Tick "Testversion installieren (mit Lohnsteuer-Ermäßigung)" [Install test
version (...)] in the next window (Installation >SteuerSparErklärung
2015</Produkt-Freischaltung).
- Choose "Ich akzeptiere die Bedingungen der Lizenzvereinbarung" [Accept
license] and click "Weiter >" in the next window (Installation
>SteuerSparErklärung 2015</Lizenzvereinbarung). The license text is not
displayed, see bug #37743.
... then the installation starts but finally fails with the error message.
--
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=23045
Summary: Far Cry 2: unexpected exiting of application
Product: Wine
Version: 1.2-rc2
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: mgavl69(a)juno.com
Created an attachment (id=28591)
--> (http://bugs.winehq.org/attachment.cgi?id=28591)
fc2bugs_builtin_secur32
Far Cry 2 will unexpectedly exit with no backtrace. Mainly this is a problem
encountered when starting a 'New Story',if it doesn't exit on the loading
screen, and going along the first jeep ride. I haven't seen it happen when
'Continuing' or loading from a previous saved game yet.
This is one has been puzzling me since alot of people report this in the
AppDb pages. The component I've been mainly focusing on is the secur32.dll
(builtin & native). Using the native secur32.dll I haven't had any crashes or
unexpected exits at all. Using the builtin secur32.dll the exiting always
happens. See attachments. winedebug=+file,+secur32
Using winedbg hasn't provided any useful info to me to make sense of it but
maybe my winedbg-fu isn't up to par. If you have any suggestions about other
channels / winedbg commands (or example how-to pages/commands) I could look
into to provide some more useful info let me know.
--
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=40961
Bug ID: 40961
Summary: Angels Fall First DirectX mode fails to draw anything
Product: Wine
Version: 1.9.14
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: major
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: freepskov(a)gmail.com
Distribution: ---
Created attachment 55108
--> https://bugs.winehq.org/attachment.cgi?id=55108
Log of wine and game output
I recently got Angels Fall First 0.9.253.2507 (Early Access) on Steam, a game
which I believe runs on Unreal Engine 3. It does not work on Wine 1.9.14 with
my NVIDIA GTX 550 Ti Desktop or my Intel Iris Pro 5200 laptop on either Ubuntu
16.04 (both computers) or Mac OS X (laptop only).
When opened in the default mode (DirectX 9), the splash appears for a while,
the screen goes black for a few seconds, and then it goes transparent at a
weird resolution. You can then alt-tab to get to the rest of your open windows,
and the process must be manually killed. It continues to play music until it is
killed.
The game also has an OpenGL mode that doesn't work, as well as a Direct X 11
mode that doesn't work, but that is for a separate bug report as different
things occur.
Past testimony on the internet suggests that the game used to work, so I
suppose the developers made some change to AFF that broke it on wine.
I tested lots of native libraries, and as far as I can tell, they do nothing to
help or hurt the game.
I'm attaching a log from a clean 32-bit wine prefix with mono 4.6.3. I also
tested it with winetricks dotnet40 and winetricks dotnet45, but the output was
identical, except that the second line in the log did not appear when dotnet45
was used and some addresses changed.
These look to me like highlights from the log, but I am by no means an expert:
> fixme:d3d:debug_d3dformat Unrecognized 0x34324644 (as fourcc: DF24) WINED3DFORMAT!
> fixme:d3d:wined3d_get_format Can't find format unrecognized (0x34324644) in the format lookup table
> Then the game says "Warning," over and over
> fixme:ntdll:NtQuerySystemInformation info_class SYSTEM_PERFORMANCE_INFORMATION
The game then gives the output: *** WARNING - PATHS MAY NOT BE VALID ***
After the game opens, wine will repeat the message:
> fixme:d3d:wined3d_occlusion_query_ops_get_data 0x42a04b98 Wrong thread, returning 1.
until the process is put out of its misery.
--
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=40719
Bug ID: 40719
Summary: Space Engine 0.96: Crash on loading planets, galaxies,
and the simulator.
Product: Wine
Version: 1.6.1
Hardware: x86-64
URL: http://spaceengine.org
OS: Mac OS X
Status: UNCONFIRMED
Severity: major
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: zachary_chompy(a)live.com
Created attachment 54620
--> https://bugs.winehq.org/attachment.cgi?id=54620
Application crash...
Crashes when initializing galaxies or pretty much anything.
--
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=40358
Bug ID: 40358
Summary: staredew valley crashes when reaching level 120 in the
mines and when receiving pet
Product: Wine
Version: unspecified
Hardware: x86
OS: Mac OS X
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: thegirl_isagirl(a)yahoo.com
stardew valley crashes when reaching level 129 in the mines and when receiving
pet
--
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=39851
Bug ID: 39851
Summary: The King of Fighters 2002 Unlimited Match (Steam):
Crash at begin
Product: Wine
Version: unspecified
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: directx-d3dx9
Assignee: wine-bugs(a)winehq.org
Reporter: billy3321(a)gmail.com
Distribution: ---
Created attachment 53203
--> https://bugs.winehq.org/attachment.cgi?id=53203
wine log
I installed The King of Fighters 2002 Unlimited Match through steam, the
install is success.
Then I start the game, the window separated to 2 window, one is background, and
the other play the movie. the movie window cannot accept any input, only the
background window can input. but while push the space(start button), the game
crashed.
--
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=38942
Bug ID: 38942
Summary: Driving Simulator 2012 starts but I cannot see the
main parts of the game
Product: Wine
Version: 1.7.47
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: directx-d3d
Assignee: wine-bugs(a)winehq.org
Reporter: oebbler(a)live.de
Distribution: ---
Created attachment 51883
--> https://bugs.winehq.org/attachment.cgi?id=51883
Wine log while the error occurs; the log is shorted because the lines that are
not shown are exactly the same as the last ones in the log
The game starts correctly but I cannot see anything except the minimap in the
top right corner and the HUD on the bottom.
--
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=37968
Bug ID: 37968
Summary: Coupons.com plugin 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: jmarcellais(a)gmail.com
Distribution: ---
Created attachment 50591
--> https://bugs.winehq.org/attachment.cgi?id=50591
BackTrace log
Attempting to print from Coupons.com with coupons.exe and firefox installed in
Wine
Getting the following error when attempting to print and the site hits the
coupon printer plugin (see attached)
--
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=37427
Bug ID: 37427
Summary: Open General Error after playing a Round
Product: Wine
Version: 1.6.2
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: tobi_betsch(a)yahoo.de
Distribution: ---
Created attachment 49780
--> https://bugs.winehq.org/attachment.cgi?id=49780
Error-Report of Wine
Hi,
when I start the game "Open General" and play a round the Error occurs wich is
underneath. It happens on different maps and Mods.
Can you help me plz?
Tobi
--
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=37142
Bug ID: 37142
Summary: rome total war 2: crashes at start
Product: Wine
Version: unspecified
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: daneker88(a)gmail.com
Created attachment 49364
--> https://bugs.winehq.org/attachment.cgi?id=49364
error report
game crashes when i click play
--
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=35257
Bug ID: 35257
Summary: when wine system tray left click,wine does not draw
top-down menu in correct cordinator.
Product: Wine
Version: 1.7.8
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: matyapiro31(a)gmail.com
Classification: Unclassified
Created attachment 47024
--> http://bugs.winehq.org/attachment.cgi?id=47024
This background was unforcused,not because wine.
System tray apps i tried was only Hidemaru,but it must not hidemaru's own
problem.
When clicked right ,it correctly draw menu.
--
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=34907
Bug #: 34907
Summary: Evernote 5.0.x (all versions) search popup permanently
above all other windows
Product: Wine
Version: 1.7.3
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: danny(a)orionrobots.co.uk
Classification: Unclassified
Using Evernote 5.0.x (1,2 and 3 have exhibited this on Wine), the search popup
is always on top - above all other desktop windows, and is hard to close.
I usually have to minimize the main Evernote window to make it disappear.
This is seen on FC19 x86_64.
--
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=34585
Bug #: 34585
Summary: Only one System-Tray icon is responsive at a time
Product: Wine
Version: 1.7.1
Platform: x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: stewved(a)gmail.com
Classification: Unclassified
To replicate:
1 Open any app that has a system tray icon eg. Steam.
2 Open another app that also uses the tray icon.
The first app's icon icon wont register any clicks.
No difference when using the same prefix or different ones.
--
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=33478
Bug #: 33478
Summary: Borderlands 2 on FGLRX compiles a shader every frame.
Product: Wine
Version: unspecified
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: directx-d3dx9
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: roboman2444(a)gmail.com
CC: wine-bugs(a)winehq.org
Classification: Unclassified
So whenever running Borderlands 2 under wine with FGLRX, I get about 2 fps. It
doesn't matter the resolution, graphical settings, Borderlands 2 config file
edits, or winecfg settings.
Using APITrace, I have concluded that GLCompileShaderARB and GLLinkProgramARB
are being called every single frame, and taking up a lot of cpu time.
This may effect some other games, such as Serious Sam 2 HD, but I don't have
conclusive evidence that this is the problem.
Wine version affected- 2.5.29 and below.
OS- Debian Squeeze x86.
CPU- amd FX8320
RAM- 24GB 1866mhz
GPU- dual 6970's. Crossfire disabled for wine.
Drivers- FGRLX 13.4. It has happened in previous versions as well.
--
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=33397
Bug #: 33397
Summary: World of Warcraft 5.x, openSUSE 12.3 & Wine 1.5 very
low fps
Product: Wine
Version: 1.5.28
Platform: x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: fakemoth(a)gmail.com
Classification: Unclassified
Wine has very poor performance in World of Warcraft 5.x Mists of Pandaria,
Wine 1.5.x any recent version on high end ATI/AMD graphic cards (D3D or OpenGL,
both 32 and 64bit client), 4 to 5 times slower than reported usually in forums,
to the limit of unplayable, for example 6 frames/s in intensive fights like
Sha, 14 frames/s in major cities on busy realms, with an overal media of 20 fps
on a ATI/AMD Radeon HD 6950/2GB (13.1 vendor driver), 6 core AMD CPU 1055T, 8GB
RAM DDR3, 10krpm WD Raptor, OpenSUSE 12.3 x86_64.
Confirmed also for Ubuntu 12.10 x86_64. No other problems it installs and runs
fine except the FPS issue.
Nothing seems to help. More here:
http://forum.winehq.org/viewtopic.php?f=8&t=17703&p=84834#p84834
and here
http://forums.opensuse.org/english/get-technical-help-here/games/480599-wor…
--
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=32097
Bug #: 32097
Summary: hover menu of QQ2012 contact flushes and randomly
disapears
Product: Wine
Version: 1.5.16
Platform: x86
OS/Version: Linux
Status: NEW
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: fracting(a)gmail.com
Classification: Unclassified
Hello,
This is a follow up of Bug 32066.
To reproduce:
1. Download qq2011
http://dl_dir.qq.com/qqfile/qq/QQ2011/QQ2011.exe
2. Install QQ2011.exe
3. set atl80 to native, work around 30512
4. `winetricks -q riched20`, work around Bug 29636
5. `winetricks -q ie7`, work around Bug 29638
6. Start QQ.exe
7. login (be careful of Bug 27468)
accout: 1469264807
Password: winedebug
8. open the main UI of QQ, move the mouse to the "My Profile icon" or one of
the contacts' icon, such as qq-myprofile-hover-menu.png and
qq-contact-hover-menu.png
At this time, a hover menu will popup, such as the two screenshot showing.
9. move the mouse from one icon to anonther icon, for example, move from "My
Profile icon" to "winedebug", or move from "winedebug" to "fracting", and so
on.
Expect Result:
Different hover menu shoud be displayed for each related icon.
Actual Result:
The hover menu usually flushes in a moment and disappears.
--
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=31714
Bug #: 31714
Summary: AutoCAD 2005 pan became unacceptably slow in 1.5.13
Product: Wine
Version: 1.5.13
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: gdi32
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: max(a)veneto.com
Classification: Unclassified
After updating to 1.5.13 the pan command became very slow and jerky.
To reproduce, simply open a drawing and try to pan with middle mouse button.
Up to wine 1.5.12 it was quite smooth and fast, now it's jerky and very slow.
--
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=31291
Bug #: 31291
Summary: Unable to input german umlaut characters with certain
locales
Product: Wine
Version: unspecified
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: ldm(a)gmx.at
Classification: Unclassified
I can not type german Umlaut characters äöü when i have the locale
en_DK.utf8
however if I set it to
en_US.utf8 or de_DE
it works! This is independet from the keyboard layout. Copy-pasting into the
wine application works in any case and the characters are displayed correctly.
Inputing german characters should work equaly well in any locale and only
depend on the keyboard layout. In any case it should work in en_DK.utf8 just as
well as in en_US.utf8 since both are english and both are unicode. Tested with
wine-1.5.9.
--
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=25223
Summary: Tray icons are flickering
Product: Wine
Version: 1.3.7
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: trivial
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: lyoko(a)live.com
I'm using uTorrent 2.0.4 in the latest wine, and the tray icon flickers when my
mouse is over his tray icon, or sometimes the tray icon gets yellow backround..
just a small issue..
--
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=24884
Summary: Star Wars: The Force Unleashed needs d3dx9_36
Product: Wine
Version: 1.3.5
Platform: x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: directx-d3dx9
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: xvachon(a)gmail.com
CC: wine-bugs(a)winehq.org
Created an attachment (id=31513)
--> (http://bugs.winehq.org/attachment.cgi?id=31513)
Log
Attached log shows a bunch of stubs the game depends on. winetricks d3dx9_36
works around the problem.
--
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=24444
Summary: Privates (game) crashes upon startup
Product: Wine
Version: 1.3.2
Platform: x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: devurandom(a)gmx.net
Created an attachment (id=30837)
--> (http://bugs.winehq.org/attachment.cgi?id=30837)
crash.log
I installed the game "Privates" [1], but it crashes right on startup, after
installation.
[1] http://www.e4.com/game/privates.html
--
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=24234
Summary: Huge flicker problem when playing Dragon Age
fullscreen with ATI card
Product: Wine
Version: 1.2
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: rig9919hd(a)gmail.com
I am trying to play Dragon Age Origins using ATI Catalyst driver with Radeon HD
4870.
I will just list the combinations of settings and their results rather than try
explaining whats happening.
TEST 1
winecfg: desktop emulation on 1600x900
in-game graphics: fullscreen on, 1600x900
command used to launch: wine daorigins.exe
result: launches fine and things are ok until I alt-tab (to hide the taskbar,
because it still has focus) to give full focus to the game window and then
massive flicker occurs with weird color changes. unplayable
TEST 2
winecfg: desktop emulation on 1600x900
in-game graphics: fullscreen off, 1600x900
command used to launch: wine daorigins.exe
result: everything's fine, but not ideal because when mouse goes to bottom of
screen while playing, taskbar pops up if
TEST 3
winecfg: desktop emulation off
in-game graphics: fullscreen on, 1600x900
command used to launch: wine daorigins.exe
result: huge flicker problem, unplayable
TEST 4
winecfg: desktop emulation off
in-game graphics: fullscreen on, 1024x768
command used to launch: wine daorigins.exe
result: playable but not ideal because my screen is 1600x900
TEST 5
winecfg: desktop emulation off
in-game graphics: fullscreen on, 1600x900
command used to launch: startx `which wine` daorigins.exe -- :1
result: huge flicker, unplayable
TEST 6
winecfg: desktop emulation on, 1600x900
in-game graphics: fullscreen on, 1600x900
command used to launch: startx `which wine` daorigins.exe -- :1
result: best result so far, no flicker, good resolution, but about 20 pixels
are cut off the bottom because of desktop emulation being on
It seems like anytime the game is played at "real fullscreen" the flicker
problem occurs.
--
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=23825
Summary: Default charset for help files does not in sync with
the default charset for the system
Product: Wine
Version: 1.1.42
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: mshtml
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: aceler(a)gmail.com
Created an attachment (id=29902)
--> (http://bugs.winehq.org/attachment.cgi?id=29902)
screenshot
The system can have a default charset for the files, including html files, like
cp-1251 for Russian, cp-1254 for Turkish and so on.
Some of the people, writing help files assume that the codepage for these files
is the default, but wine help browser shows it in iso-8859-1.
--
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=23437
Summary: winevdm.exe crashes in Discovering Endangered Wildlife
Product: Wine
Version: 1.2-rc5
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: minor
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: markk(a)clara.co.uk
Created an attachment (id=29235)
--> (http://bugs.winehq.org/attachment.cgi?id=29235)
Console output on crash
Discovering Endangered Wildlife is a multimedia CD-ROM originally produced by
Lyriq International Corporation. It was more recently marketed by
GSP/Avanquest, at least in the UK as David Bellamy's Endangered Wildlife.
It's a Win16 application. There are several sub-games which cause a crash when
you exit them.
Run DISCOVER.EXE. Click the Discovery Game button. Enter your name and click OK
if asked. Click on an animal. When the grid screen appears, click the jigsaw,
word finder or picture scramble icons. Click the Done button at the lower right
of the screen. Wine shows a Program Error dialog box saying "The program
winevdm.exe has encountered a serious problem and needs to close. ..."
Console output begins (the read access address varies from run to run):
wine: Unhandled page fault on read access to 0x00001698 at address 0x683a67fc
(thread 001a), starting debugger...
Unhandled exception: page fault on read access to 0x00001698 in 32-bit code
(0x683a67fc).
fixme:dbghelp:addr_to_linear Failed to linearize address 005a:ab08 (mode 0)
--
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=22268
Summary: SWKOTOR: Fails to detect installed graphic drivers
Product: Wine
Version: 1.1.42
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: minor
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: lukasz.wojnilowicz(a)gmail.com
Created an attachment (id=27198)
--> (http://bugs.winehq.org/attachment.cgi?id=27198)
What happens after clicking scan hardware in configurator
The problem is that Star Wars Knights Of The Old Republic configurator fails to
detect installed graphic drivers. I click on the scan hardware in configurator
and I get what I showed in attachment
In terminal there are only these lines:
fixme:win:EnumDisplayDevicesW ((null),0,0x33f2d0,0x00000000), stub!
fixme:win:EnumDisplayDevicesW ((null),0,0x33f2d0,0x00000000), stub!
fixme:win:EnumDisplayDevicesW ((null),0,0x33e240,0x00000000), stub!
fixme:win:EnumDisplayDevicesW ((null),0,0x33e240,0x00000000), stub!
fixme:win:EnumDisplayDevicesW ((null),0,0x33e240,0x00000000), stub!
fixme:win:EnumDisplayDevicesW ((null),0,0x33e240,0x00000000), stub!
Additional info:
Fedora 12 32 bit
self-compiled Wine 1.1.42
NVIDIA 9xxx with drivers from vendor site 195.36.15
--
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.