http://bugs.winehq.org/show_bug.cgi?id=34122
Mark Eoberts mr2131@cebridge.net changed:
What |Removed |Added ---------------------------------------------------------------------------- CC| |mr2131@cebridge.net
--- Comment #13 from Mark Eoberts mr2131@cebridge.net 2013-12-03 00:47:00 CST --- (In reply to comment #12)
I figured out an actual workaround
cd %HERE_IS_YOUR_CIV5_DIR%/Assets mv DLC ../DLC.orig # Only first time mount -t tmpfs tmpfs DLC cd DLC for i in `ls ../../DLC.orig/|tac`; do ln -s ../../DLC.orig/$i .; done;
That's it. tmpfs lists files in the order in which they were created (reversed), so your test program, civ5 and ls -la --sort=no gets them right.
You need to mount tmpfs and create symlinks after every reboot, but it works.
For those of us who aren't all that savvy, how can we get things to work properly? My game loads but much of the DLC is missing and when the game starts, there are no order menus, making it unplayable.
Mark