Revert "dont install vcrun"

This reverts commit e11052ea8c71eb62fa753daa5f1c055774d1d34b.
This commit is contained in:
RealJohnGalt 2018-11-06 09:58:57 -08:00
parent e11052ea8c
commit 407ccf391b

View File

@ -119,7 +119,13 @@ cat > LaunchCEMU << EOF1
export WINEPREFIX="$(realpath $instdir)/wine"
export WINEDLLOVERRIDES="mscoree=;mshtml=;dbghelp.dll=n,b"
winetricks settings win7
if [ -z `winetricks list-installed|grep vcrun2015` ]; then
if [ -n "`whereis zenity|grep bin`" ]; then
zenity --info --title 'Cemu' --text 'Installing wine dependencies.\n\nThe process may take a few minutes'
fi
winetricks -q vcrun2015
winetricks settings win7
fi
cd $(realpath $instdir)
mesa_glthread=true vblank_mode=0 WINEESYNC=0 wine $(realpath $instdir)/Cemu.exe "\$@"
EOF1
@ -130,7 +136,13 @@ cat > LaunchCEMUgcn3BOTW << EOF1
export WINEPREFIX="$(realpath $instdir)/wine"
export WINEDLLOVERRIDES="mscoree=;mshtml=;dbghelp.dll=n,b"
winetricks settings win7
if [ -z `winetricks list-installed|grep vcrun2015` ]; then
if [ -n "`whereis zenity|grep bin`" ]; then
zenity --info --title 'Cemu' --text 'Installing wine dependencies.\n\nThe process may take a few minutes'
fi
winetricks -q vcrun2015
winetricks settings win7
fi
cd $(realpath $instdir)
R600_DEBUG=nohyperz mesa_glthread=true vblank_mode=0 WINEESYNC=0 wine $(realpath $instdir)/Cemu.exe "\$@"
EOF1