Ok,
this is the patch:
https://gist.githubusercontent.com/paradigm/9741650/raw/763324277449a6a7d28aa8a4ce3ddfc8d203638e/gistfile1.diff
I applied it to commit c5b1ec3329d47006bfddb381f730ad4310528b00 running the following commands:
and then the normal steps for compiling as described here in step 3 https://wiki.dolphin-emu.org/index.php?title=Building_Dolphin_on_Linux
To be honest, on the git and patching part I just followed paradigm's instructions as I don't really know much about git.
Hope it helps!
this is the patch:
https://gist.githubusercontent.com/paradigm/9741650/raw/763324277449a6a7d28aa8a4ce3ddfc8d203638e/gistfile1.diff
I applied it to commit c5b1ec3329d47006bfddb381f730ad4310528b00 running the following commands:
Code:
git clone https://code.google.com/p/dolphin-emu
cd dolphin-emu
git checkout dc-netplay
git log | head -n1 #should give you: commit c5b1ec3329d47006bfddb381f730ad4310528b00
git checkout -b paradigm-fix
wget https://gist.githubusercontent.com/paradigm/9741650/raw/763324277449a6a7d28aa8a4ce3ddfc8d203638e/gistfile1.diff
patch -p1 < gistfile1.diff
git commit -a -m "reverts 685206c97eded569e58c6d3ff0e5215e3bdb6394" #to ensure the change is savedand then the normal steps for compiling as described here in step 3 https://wiki.dolphin-emu.org/index.php?title=Building_Dolphin_on_Linux
Code:
mkdir Build && cd Build
cmake ..
make && sudo make installTo be honest, on the git and patching part I just followed paradigm's instructions as I don't really know much about git.
Hope it helps!
