Global update of the port_on file
This commit is contained in:
@ -12,7 +12,7 @@ export gamestart="${PATH_TO_GAME}/GalaxyClient.exe"
|
||||
export MESA_GL_VERSION_OVERRIDE=4.4COMPAT
|
||||
export WINEDLLOVERRIDES="winemenubuilder.exe=d"
|
||||
export STAGING_SHARED_MEMORY=1
|
||||
export PW_LOG=1 # Enable debug mode fo terminal
|
||||
export PW_LOG=0 # Enable debug mode fo terminal
|
||||
export PW_NO_VR=1 # Disabled VR support
|
||||
export PW_NO_D3D9=0 # Disable d3d9.dll
|
||||
export PW_NO_D3D10=0 # Disable d3d10.dll, for d3d10 games which can fall back to and run better with d3d9
|
||||
|
@ -45,6 +45,22 @@ ADD_IN_STOP_PORTWINE ()
|
||||
echo " "
|
||||
}
|
||||
########################################################################
|
||||
PW_INIT_RUN ()
|
||||
{
|
||||
export PW_DLL_INSTALL="vb5run vb6run vcrun6 vcrun6sp6 b1ab1ab1a"
|
||||
for dll_install in $PW_DLL_INSTALL
|
||||
do
|
||||
echo "######################################################"
|
||||
echo "winetricks -q --force ${dll_install}"
|
||||
"${PW_RUNTIME}" "${PORT_WINE_TMP_PATH}/winetricks" -q --force ${dll_install}
|
||||
if [ $? -eq 0 ]; then
|
||||
echo "OK: ${dll_install}" >> "${PORT_WINE_TMP_PATH}/init_run_suc"
|
||||
else
|
||||
echo "ERROR: ${dll_install}" >> "${PORT_WINE_TMP_PATH}/init_run_suc"
|
||||
fi
|
||||
done
|
||||
}
|
||||
########################################################################
|
||||
ADD_IN_POST_INSTALL ()
|
||||
{
|
||||
`zenity --info --title "${inst_set_top}" --text "${inst_succ}" --no-wrap ` > /dev/null 2>&1
|
||||
|
Reference in New Issue
Block a user