dont install vcrun

This commit is contained in:
RealJohnGalt 2018-10-31 09:30:52 -07:00
parent 42564f2656
commit e11052ea8c

View File

@ -119,13 +119,7 @@ cat > LaunchCEMU << EOF1
export WINEPREFIX="$(realpath $instdir)/wine"
export WINEDLLOVERRIDES="mscoree=;mshtml=;dbghelp.dll=n,b"
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
winetricks settings win7
cd $(realpath $instdir)
mesa_glthread=true vblank_mode=0 WINEESYNC=0 wine $(realpath $instdir)/Cemu.exe "\$@"
EOF1
@ -136,13 +130,7 @@ cat > LaunchCEMUgcn3BOTW << EOF1
export WINEPREFIX="$(realpath $instdir)/wine"
export WINEDLLOVERRIDES="mscoree=;mshtml=;dbghelp.dll=n,b"
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
winetricks settings win7
cd $(realpath $instdir)
R600_DEBUG=nohyperz mesa_glthread=true vblank_mode=0 WINEESYNC=0 wine $(realpath $instdir)/Cemu.exe "\$@"
EOF1