http://bugs.winehq.org/show_bug.cgi?id=20643
Masin Al-Dujaili mad@larp-bb.de changed:
What |Removed |Added ---------------------------------------------------------------------------- CC| |mad@larp-bb.de
--- Comment #28 from Masin Al-Dujaili mad@larp-bb.de 2009-12-09 12:23:58 --- (In reply to comment #27)
I can confirm launcher does this. I've bypassed the problem by calling the BackgroundDownloader in a script while launching wow. works through patches. This is not a fix, but at least for me, a proven work-around.
I've written this script:
#!/bin/sh if [ "$WINEPREFIX" = "" ]; then WINEPREFIX="$HOME/.wine" fi WOWPATH="$WINEPREFIX/drive_c/Programme/World of Warcraft"
chmod 770 "$WOWPATH"
# I need padsp for sound output padsp wine "C:\Programme\World of Warcraft\Launcher.exe" &
# requieres inotify-tools inotifywait -e attrib "$WOWPATH" sleep 2
chmod 770 "$WOWPATH"
This enables normal functionality.