https://bugs.winehq.org/show_bug.cgi?id=37402
Bug ID: 37402
Summary: WINAPI is not correct
Product: Wine
Version: unspecified
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: k1-801(a)mail.ru
Distribution: ---
I've found a strang bug while testing my program.
I used few WINAPI funcs for codepage converting (the file path was in UTF-8,
and to open it, I needed to convert it to the Windows's awkward wchar_t and
back). I hadn't a copy of Windows that time, so I tested it on wine. There's
the tested code:
char* WcharToUTF8(wchar_t *in)
{
uint64_t len = WideCharToMultiByte(CP_UTF8, MB_ERR_INVALID_CHARS, in, -1,
NULL, 0, NULL, NULL);
char *out = (char*)calloc((len + 1) * 6, sizeof(char));
WideCharToMultiByte(CP_UTF8, MB_ERR_INVALID_CHARS, in, -1, out, len, NULL,
NULL);
return out;
}
It worked on wine. On wine it returns correctly converted string. On real
Windows it returns nothing, and empty string crashes the program.
After replasing MB_ERR_INVALID_CHARS with 0 it worked on both wine and Windows.
char* WcharToUTF8(wchar_t *in)
{
uint64_t len = WideCharToMultiByte(CP_UTF8, 0, in, -1, NULL, 0, NULL,
NULL);
char *out = (char*)calloc(len + 1, sizeof(char));
WideCharToMultiByte(CP_UTF8, 0, in, -1, out, len, NULL, NULL);
return out;
}
Also, the code was stolen from MSDN page about codepages, and there was a note
about "nothing will work correctly WITHOUT MB_ERR_INVALID_CHARS".
Windows bug? Wine bug? Wine did work as said in MSDN, Windows did not.
--
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=12714
Summary: SimCity 2000: crashes when saving or opening a file.
Product: Wine
Version: 0.9.60
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: mkno(a)earthlink.net
Whenever I open the file dialog to open or save a file, or when I just try to
save a file directly, SimCity 2000 crashes.
--
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=42099
Bug ID: 42099
Summary: Bedlam (indie game) renders 3D world upside down
(DX11)
Product: Wine
Version: 2.0-rc3
Hardware: x86
URL: http://store.steampowered.com/app/261490/
OS: Linux
Status: NEW
Severity: normal
Priority: P2
Component: directx-d3d
Assignee: wine-bugs(a)winehq.org
Reporter: gyebro69(a)gmail.com
Distribution: ---
Created attachment 56616
--> https://bugs.winehq.org/attachment.cgi?id=56616
terminal output
This is an indie game built on Unity (4.5.x).
When the game uses the DX11 renderer and you enter the 3D world of the game,
everything is rendered upside down except HUD elements.
The menus also look good.
With the DX9 renderer (disabled d3d11.dll) scenery is rendered correctly in the
3D world.
The following 3 lines were removed from the log to reduce it's size:
fixme:d3d11:d3d11_immediate_context_OMSetBlendState Per-rendertarget blend not
implemented.
fixme:d3d11:d3d11_immediate_context_OMSetBlendState Color mask > 3 not
implemented.
fixme:d3d11:d3d11_immediate_context_RSSetState Ignoring depth bias.
Fedora 25 x64 (32-bit wineprefix, Windows 7 profile selected)
OpenGL vendor string: NVIDIA Corporation
OpenGL renderer string: GeForce GT 730/PCIe/SSE2
OpenGL core profile version string: 4.5.0 NVIDIA 375.26
--
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=41747
Bug ID: 41747
Summary: HYPACK 2016 crashes with unknown property
"AllowXsltScript"
Product: Wine
Version: 1.9.23
Hardware: x86-64
URL: https://support.hypack.com/support/index.php?/Knowledg
ebase/Article/View/338/89/hypack-2016-release-version
OS: Linux
Status: NEW
Keywords: download
Severity: minor
Priority: P2
Component: msxml6
Assignee: wine-bugs(a)winehq.org
Reporter: andrey.goosev(a)gmail.com
Distribution: ---
Crashes on start with
> fixme:msxml:domdoc_setProperty Unknown property L"AllowXsltScript"
Native msxml6 solves the issue.
wine-1.9.23-80-ga4ed76b
--
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=41052
Bug ID: 41052
Summary: Failure to create D3D9 device on i915
Product: Wine
Version: 1.9.14
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: directx-d3d
Assignee: wine-bugs(a)winehq.org
Reporter: b7.10110111(a)gmail.com
Distribution: ---
Created attachment 55224
--> https://bugs.winehq.org/attachment.cgi?id=55224
Test case
I'm testing the attached source (compilable with wineg++ or mingw32-g++) on
Intel Atom N550, which is i915-class GPU. I get the following output on it:
$ wine --version; ./d3d9-init-test.exe
wine-1.9.14
fixme:win:EnumDisplayDevicesW ((null),0,0x32f858,0x00000000), stub!
Error: Failed to create Direct3D device: invalid call
wine-1.5.17-7-g67886fed, despite multiple fixme and err prints, does at least
create the device (i.e. the test prints "Init OK").
wine-1.7.33-84-gfecbc88 already fails.
--
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=40488
Bug ID: 40488
Summary: Revenant crashes when starting a new game
Product: Wine
Version: 1.9.6
Hardware: x86
OS: Linux
Status: NEW
Keywords: regression
Severity: normal
Priority: P2
Component: directx-d3d
Assignee: wine-bugs(a)winehq.org
Reporter: gyebro69(a)gmail.com
CC: stefan(a)codeweavers.com
Blocks: 37070
Regression SHA1: aeefbdffba9ea77310759956007f1348920b4477
Distribution: ---
Created attachment 54261
--> https://bugs.winehq.org/attachment.cgi?id=54261
terminal output
Graphical issues are present in the game as reported in bug #37070.
Since Wine 1.9.6 the game crashes when starting a new game from the main menu:
'DirectX Error: DDERR_SURFACEBUSY'.
Tested with the GOG.com version of the game. Demo version is available on
Fileplanet, but the website has been marked as malicious site by Chrome and
Firefox, so I didn't check whether the demo has the same problem.
Regression introduced by
commit aeefbdffba9ea77310759956007f1348920b4477
Author: Stefan Dösinger <stefan(a)codeweavers.com>
Date: Fri Mar 11 16:01:43 2016 +0100
wined3d: Merge wined3d_surface_map() and wined3d_volume_map().
Wine 1.9.8
OpenGL vendor string: nouveau
OpenGL renderer string: Gallium 0.4 on NV92
OpenGL core profile version string: 3.3 (Core Profile) Mesa 11.3.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=41774
Bug ID: 41774
Summary: Rogue operatives - only white screen in game with HUD
Product: Wine
Version: 1.9.23
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: directx-d3d
Assignee: wine-bugs(a)winehq.org
Reporter: spleefer90(a)gmail.com
Distribution: ---
Created attachment 56210
--> https://bugs.winehq.org/attachment.cgi?id=56210
Steam+RO log
This is using wine-git, as a bug that didn't let the game launch a lobby just
got fixed.
I can get into the menu fine, create a lobby but when it loads I can only see
pure white with working HUD drawn on top of it.
Using Win7.
--
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=41905
Bug ID: 41905
Summary: The Solus Project: Backend can't handle opcode bfrev
Product: Wine
Version: 1.9.23
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 56288
--> https://bugs.winehq.org/attachment.cgi?id=56288
Terminal output Wine 1.9.23
As of Wine 1.9.23, I've noticed that The Solus project has the following item
in the terminal:
fixme:d3d_shader:shader_glsl_handle_instruction Backend can't handle opcode
bfrev.
--
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=40910
Bug ID: 40910
Summary: The Next BIG Thing can't save the game (needs native
xmllite)
Product: Wine
Version: 1.9.13
Hardware: x86
URL: http://www.fileplanet.com/219646/210000/fileinfo/The-N
ext-BIG-Thing-Demo
OS: Linux
Status: NEW
Keywords: download
Severity: normal
Priority: P2
Component: xmllite
Assignee: wine-bugs(a)winehq.org
Reporter: gyebro69(a)gmail.com
Distribution: ---
When attempting to save the game, nothing happens: there is no error message
from the game and no saved game is created. The demo version tends to hang
after performing a manual save.
In the terminal:
fixme:xmllite:xmlwriter_SetProperty Unimplemented property (1)
Saving the game works with native xmllite.dll.
Steps to reproduce the problem in the demo:
Start the game with 'The Next Big Thing.exe', create a new player, start a new
game. You can skip the intro videos by pressing <Esc.> Move the mouse pointer
to the top of the screen and select the rightmost icon to open the controls
menu. Use the disk icon to save the game, enter a name, press <Enter>. The game
is not saved.
The_Next_BIG_Thing_Demo_EN.zip (793M)
sha1: a3ef1262a81a0b853eafd7a51f232b2abf343c14
--
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=41220
Bug ID: 41220
Summary: Provide fallback implementation of strnlen for OS
versions that don't have it in their Libc (Leopard,
Snow Leopard, et al)
Product: Wine
Version: 1.9.17
Hardware: x86
OS: Mac OS X
Status: UNCONFIRMED
Severity: minor
Priority: P2
Component: directx-d3d
Assignee: wine-bugs(a)winehq.org
Reporter: jeremyhu(a)freedesktop.org
wine-1.9.17 is failing to build on Leopard and Snow Leopard due to strnlen not
being available on those OS versions, where d3d10.dll.so and d3d11.dll.so fail
to link with:
Undefined symbols for architecture i386:
"_strnlen", referenced from:
_fx10_get_string in effect.o
Undefined symbols for architecture i386:
"_strnlen", referenced from:
_shader_parse_signature in shader.o
A fallback implementation of strnlen should be provided for such cases.
--
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.