https://bugs.winehq.org/show_bug.cgi?id=45514
--- Comment #11 from Anastasius Focht focht@gmx.net --- Hello Géza,
--- quote --- I don't know why wine is using both C:\ and Z:\ drives at the same time. --- quote ---
maybe the working directory is not properly set?
--- snip --- 002f:Starting process L"C:\Program Files\Pioneer\rekordbox 5.3.0\rekordbox.exe" (entryproc=0x140e3ee78) ... 002f:Call KERNEL32.GetCurrentDirectoryW(00000204,0022f6d0) ret=1412db927 002f:Ret KERNEL32.GetCurrentDirectoryW() retval=0000000c ret=1412db927 ... 002f:Call KERNEL32.CreateFileW(006ef400 L"Z:\home\geza\skins\splash.png",80000000,00000003,00000000,00000003,108000080,00000000) ret=1413362f6 002f:Ret KERNEL32.CreateFileW() retval=ffffffffffffffff ret=1413362f6 --- snip ---
KERNEL32.GetCurrentDirectoryW() -> returns 0xC = 12 characters written to the buffer (excluding zero terminator).
That's certainly not enough to contain the application path 'C:\Program Files\Pioneer\rekordbox 5.3.0' if the app would have been properly started from that directory.
How did you start the application? Always start from the main executable directory, never outside. Many applications rely on this.
Regards