M.C.

Results 187 comments of M.C.

>NTFS's case insensitivity rules don't necessarily match whatever case insensitivity rules your code runs with, and the rules may have additional complications like being locale-dependent I looked through WINE's implementation,...

>It would be moving away from using the standard filesystem APIs to a more complicated system [...] I can't justify making Linux-specific code changes to mitigate the issue. Fair enough....

Just for completeness, I'll add my own answer as I'm the developer of Image Max URL (I'll refer to it as IMU). Please note that I don't know much about...

Request this to https://github.com/mgp25/Instagram-API, this is just a python port of it.

As @Danacus says, the initial error is likely due to `dxcompiler.dll` being missing (from @korodarn's log - thank you!): ``` 00bc:Call KERNEL32.LoadLibraryExA(141e94fc0 "dxcompiler.dll",00000000,00000000) ret=1416abd49 ... 00bc:Ret KERNEL32.LoadLibraryExA() retval=00000000 ret=1416abd49 00bc:Call...

@korodarn No idea if this will help or not, but try installing the native `d3dcompiler_47` (`protontricks 1151640 d3dcompiler_47`): ``` 73612.804:00bc:Call d3dcompiler_47.D3DCreateBlob(0000022c,0021e360) ret=1401f327e 73612.804:00bc:Ret d3dcompiler_47.D3DCreateBlob() retval=00000000 ret=1401f327e ... 73612.804:00bc:trace:seh:raise_exception code=c0000005 flags=0...

I'm guessing this might be related to cause of the crash then: ``` warn:d3d12_swapchain_set_display_mode: Failed to find closest matching mode, hr 0x887a0001. ... err:d3d12_swapchain_resize_target: Failed to set display mode, hr...

@Krutonium Could you send an updated log?

@Krutonium I'm not sure how relevant this error is, but: ``` 294.747:00cc:00d0:fixme:thread:SetThreadIdealProcessor (0000000000000EC4 64): stub 294.758:00cc:00d0:trace:seh:raise_exception code=c000001d flags=0 addr=0x14e9d1d7b ip=14e9d1d7b tid=00d0 ``` Something (unrelated to `SetThreadIdealProcessor`) raised c000001d, which is...

I've written two patches: https://source.winehq.org/patches/data/201351 gamingtcui patch ``` diff --git a/configure.ac b/configure.ac index 5b7f09de924..f584cecf733 100644 --- a/configure.ac +++ b/configure.ac @@ -2979,6 +2979,7 @@ WINE_CONFIG_MAKEFILE(dlls/api-ms-win-eventing-controller-l1-1-0) WINE_CONFIG_MAKEFILE(dlls/api-ms-win-eventing-legacy-l1-1-0) WINE_CONFIG_MAKEFILE(dlls/api-ms-win-eventing-provider-l1-1-0) WINE_CONFIG_MAKEFILE(dlls/api-ms-win-eventlog-legacy-l1-1-0) +WINE_CONFIG_MAKEFILE(dlls/api-ms-win-gaming-tcui-l1-1-0) WINE_CONFIG_MAKEFILE(dlls/api-ms-win-gdi-dpiinfo-l1-1-0) WINE_CONFIG_MAKEFILE(dlls/api-ms-win-mm-joystick-l1-1-0)...