https://bugs.winehq.org/show_bug.cgi?id=27324
--- Comment #8 from Nikolay Sivov bunglehead@gmail.com --- This program uses OpenFile() function that has a limit of 128 characters per path. From the log:
--- trace:file:SearchPathW found L"C:\Program Files\DotEmu\All Cossacks And American Conquest Series\Cossacks II - Napoleonic Wars\SOUND\INTERFACE\INTERF_SELECT1.WAV" trace:file:OpenFile found "l\xdf3" ---
1\xdf3 <- most likely a garbage. SearchPathW was able to locate this sound resource, but was unable to store it in OFSTRUCT.szPathName[OFS_MAXPATHNAME], because OFS_MAXPATHNAME is 128, but you need 130 (if I counted it right) for this path.
In comment 4 you said it works if moved to shorter path, so I don't think there's anything to fix in Wine.