You are here Supported software Steam
| Creator | Message |
|---|---|
Quentin PÂRIS
Admin
|
InformationThis installer has been approved by the team. InformationsPlatforms: Feedbacks11 14 DescriptionThe famous gaming platform from Valve. Screenshots
Source code#!/bin/bash
# Date : (2010-02-10 16:30)
# Last revision : (2012-07-21 21:00)
# Wine version used : 1.3.9, 1.3.11, 1.3.15, 1.3.18, 1.3.19, 1.3.23, 1.3.24, 1.2.3, 1.3.28, 1.3.37, 1.4.1
# Distribution used to test : Debian Testing
# Author : Tinou
# Licence : Retail
# Only For : http://www.playonlinux.com
#
# Ce script est partculier, il permet d'installer Steam sur autant de préfixe qu'on
# souhaite.
#
# Il faut donc être vigilent, et mettre le moins de paquets possible, pour que
# l'utilisateur puisse les réinstaller à sa guise. Il est facile d'installer vcrun2005,
# par contre il est difficile de le désinstaller.
#
# On installe donc seulement gecko qui est indispensable, et on évite le reste
#
##############################################################
# CHANGELOG
# [SuperPlumus] (2013-06-09 15-47)
# gettext
[ "$PLAYONLINUX" = "" ] && exit 0
source "$PLAYONLINUX/lib/sources"
TITLE="Steam"
WINEVERSION="2.12-staging"
GAME_VMS="256"
#starting the script
POL_SetupWindow_Init
POL_SetupWindow_presentation "$TITLE" "Valve" "http://www.valvesoftware.com/" "Tinou" "$PREFIX"
# Si le prefix existe, on propose d'en faire un autre
if [ -e "$POL_USER_ROOT/wineprefix/Steam" ]; then
POL_SetupWindow_textbox "$(eval_gettext 'Please choose a virtual drive name')" "$TITLE"
PREFIX="$APP_ANSWER"
else
PREFIX="Steam"
fi
# Setting prefix path
POL_Wine_SelectPrefix "$PREFIX"
# Downloading wine if necessary and creating prefix
POL_System_SetArch "x86" # forcing x86 to avoid any possible x64 related bugs
POL_Wine_PrefixCreate "$WINEVERSION"
# Installing mandatory dependencies
POL_Wine_InstallFonts
POL_Call POL_Install_corefonts
POL_Function_FontsSmoothRGB
POL_Wine_OverrideDLL "" "dwrite"
#downloading latest Steam
cd "$POL_USER_ROOT/wineprefix/$PREFIX/drive_c/"
#POL_Download "http://cdn.steampowered.com/download/$STEAM_EXEC" ""
#Installing Steam
cd "$POL_USER_ROOT/wineprefix/$PREFIX/drive_c/"
POL_Download "http://media.steampowered.com/client/installer/SteamSetup.exe"
POL_Wine_WaitBefore "$TITLE"
POL_Wine "SteamSetup.exe"
# Asking about memory size of graphic card
POL_SetupWindow_VMS "$GAME_VMS"
## Fix for Steam
# Note : semble ne plus être nécéssaire désormais?
POL_Wine_OverrideDLL "" "gameoverlayrenderer"
## End Fix
# Making shortcut
POL_Shortcut "Steam.exe" "$TITLE"
#POL_SetupWindow_message "$(eval_gettext 'If you encounter problems with some games, try to disable Steam Overlay')" "$TITLE"
POL_SetupWindow_message "$(eval_gettext 'If you want to install $TITLE in another virtual drive\nRun this installer again')" "$TITLE"
POL_SetupWindow_Close
exit 0 |
Filters:
Contribute| Member | Message | ||
| ingreenheaven | Monday 24 July 2017 at 22:26 | ||
ingreenheaven
|
WarningThis update has not been approved yet by the team. MessageThe multiplayer games on age of empires (and some other games) were not working with 2.12-staging. This is now fixed with 2.13 release. Differences@@ -27,7 +27,7 @@ source "$PLAYONLINUX/lib/sources" TITLE="Steam" -WINEVERSION="2.12-staging" +WINEVERSION="2.13" GAME_VMS="256" #starting the script New source code#!/bin/bash
# Date : (2010-02-10 16:30)
# Last revision : (2012-07-21 21:00)
# Wine version used : 1.3.9, 1.3.11, 1.3.15, 1.3.18, 1.3.19, 1.3.23, 1.3.24, 1.2.3, 1.3.28, 1.3.37, 1.4.1
# Distribution used to test : Debian Testing
# Author : Tinou
# Licence : Retail
# Only For : http://www.playonlinux.com
#
# Ce script est partculier, il permet d'installer Steam sur autant de préfixe qu'on
# souhaite.
#
# Il faut donc être vigilent, et mettre le moins de paquets possible, pour que
# l'utilisateur puisse les réinstaller à sa guise. Il est facile d'installer vcrun2005,
# par contre il est difficile de le désinstaller.
#
# On installe donc seulement gecko qui est indispensable, et on évite le reste
#
##############################################################
# CHANGELOG
# [SuperPlumus] (2013-06-09 15-47)
# gettext
[ "$PLAYONLINUX" = "" ] && exit 0
source "$PLAYONLINUX/lib/sources"
TITLE="Steam"
WINEVERSION="2.13"
GAME_VMS="256"
#starting the script
POL_SetupWindow_Init
POL_SetupWindow_presentation "$TITLE" "Valve" "http://www.valvesoftware.com/" "Tinou" "$PREFIX"
# Si le prefix existe, on propose d'en faire un autre
if [ -e "$POL_USER_ROOT/wineprefix/Steam" ]; then
POL_SetupWindow_textbox "$(eval_gettext 'Please choose a virtual drive name')" "$TITLE"
PREFIX="$APP_ANSWER"
else
PREFIX="Steam"
fi
# Setting prefix path
POL_Wine_SelectPrefix "$PREFIX"
# Downloading wine if necessary and creating prefix
POL_System_SetArch "x86" # forcing x86 to avoid any possible x64 related bugs
POL_Wine_PrefixCreate "$WINEVERSION"
# Installing mandatory dependencies
POL_Wine_InstallFonts
POL_Call POL_Install_corefonts
POL_Function_FontsSmoothRGB
POL_Wine_OverrideDLL "" "dwrite"
#downloading latest Steam
cd "$POL_USER_ROOT/wineprefix/$PREFIX/drive_c/"
#POL_Download "http://cdn.steampowered.com/download/$STEAM_EXEC" ""
#Installing Steam
cd "$POL_USER_ROOT/wineprefix/$PREFIX/drive_c/"
POL_Download "http://media.steampowered.com/client/installer/SteamSetup.exe"
POL_Wine_WaitBefore "$TITLE"
POL_Wine "SteamSetup.exe"
# Asking about memory size of graphic card
POL_SetupWindow_VMS "$GAME_VMS"
## Fix for Steam
# Note : semble ne plus être nécéssaire désormais?
POL_Wine_OverrideDLL "" "gameoverlayrenderer"
## End Fix
# Making shortcut
POL_Shortcut "Steam.exe" "$TITLE"
#POL_SetupWindow_message "$(eval_gettext 'If you encounter problems with some games, try to disable Steam Overlay')" "$TITLE"
POL_SetupWindow_message "$(eval_gettext 'If you want to install $TITLE in another virtual drive\nRun this installer again')" "$TITLE"
POL_SetupWindow_Close
exit 0 Replies |
||
| ingreenheaven | Sunday 16 July 2017 at 1:23 | ||
ingreenheaven
|
InformationThis update has been approved by the team. MessageThe older version of wine doesn't work anymore. 2.12-staging works, but somehow the multiplayer games are not working. Differences@@ -27,7 +27,7 @@ source "$PLAYONLINUX/lib/sources" TITLE="Steam" -WINEVERSION="1.7.53-steam_crossoverhack" +WINEVERSION="2.12-staging" GAME_VMS="256" #starting the script New source code#!/bin/bash
# Date : (2010-02-10 16:30)
# Last revision : (2012-07-21 21:00)
# Wine version used : 1.3.9, 1.3.11, 1.3.15, 1.3.18, 1.3.19, 1.3.23, 1.3.24, 1.2.3, 1.3.28, 1.3.37, 1.4.1
# Distribution used to test : Debian Testing
# Author : Tinou
# Licence : Retail
# Only For : http://www.playonlinux.com
#
# Ce script est partculier, il permet d'installer Steam sur autant de préfixe qu'on
# souhaite.
#
# Il faut donc être vigilent, et mettre le moins de paquets possible, pour que
# l'utilisateur puisse les réinstaller à sa guise. Il est facile d'installer vcrun2005,
# par contre il est difficile de le désinstaller.
#
# On installe donc seulement gecko qui est indispensable, et on évite le reste
#
##############################################################
# CHANGELOG
# [SuperPlumus] (2013-06-09 15-47)
# gettext
[ "$PLAYONLINUX" = "" ] && exit 0
source "$PLAYONLINUX/lib/sources"
TITLE="Steam"
WINEVERSION="2.12-staging"
GAME_VMS="256"
#starting the script
POL_SetupWindow_Init
POL_SetupWindow_presentation "$TITLE" "Valve" "http://www.valvesoftware.com/" "Tinou" "$PREFIX"
# Si le prefix existe, on propose d'en faire un autre
if [ -e "$POL_USER_ROOT/wineprefix/Steam" ]; then
POL_SetupWindow_textbox "$(eval_gettext 'Please choose a virtual drive name')" "$TITLE"
PREFIX="$APP_ANSWER"
else
PREFIX="Steam"
fi
# Setting prefix path
POL_Wine_SelectPrefix "$PREFIX"
# Downloading wine if necessary and creating prefix
POL_System_SetArch "x86" # forcing x86 to avoid any possible x64 related bugs
POL_Wine_PrefixCreate "$WINEVERSION"
# Installing mandatory dependencies
POL_Wine_InstallFonts
POL_Call POL_Install_corefonts
POL_Function_FontsSmoothRGB
POL_Wine_OverrideDLL "" "dwrite"
#downloading latest Steam
cd "$POL_USER_ROOT/wineprefix/$PREFIX/drive_c/"
#POL_Download "http://cdn.steampowered.com/download/$STEAM_EXEC" ""
#Installing Steam
cd "$POL_USER_ROOT/wineprefix/$PREFIX/drive_c/"
POL_Download "http://media.steampowered.com/client/installer/SteamSetup.exe"
POL_Wine_WaitBefore "$TITLE"
POL_Wine "SteamSetup.exe"
# Asking about memory size of graphic card
POL_SetupWindow_VMS "$GAME_VMS"
## Fix for Steam
# Note : semble ne plus être nécéssaire désormais?
POL_Wine_OverrideDLL "" "gameoverlayrenderer"
## End Fix
# Making shortcut
POL_Shortcut "Steam.exe" "$TITLE"
#POL_SetupWindow_message "$(eval_gettext 'If you encounter problems with some games, try to disable Steam Overlay')" "$TITLE"
POL_SetupWindow_message "$(eval_gettext 'If you want to install $TITLE in another virtual drive\nRun this installer again')" "$TITLE"
POL_SetupWindow_Close
exit 0 Replies |
||
| ingreenheaven | Wednesday 12 July 2017 at 6:34 | ||
ingreenheaven
|
MessageThe latest version of steam doesn't work. Not sure what happened. Replies |
||
| Fivelek | Sunday 30 April 2017 at 3:34 | ||
|
Fivelek
|
WarningThis update has not been approved yet by the team. MessageI've made an updated version of Tinou's script which uses now Wine 2.4-staging with Windows XP as the Wine's Windows version and a diclaimer that tells how to make the Store and other web things working (steamwebhelper.exe) Differences@@ -1,15 +1,16 @@ #!/bin/bash # Date : (2010-02-10 16:30) -# Last revision : (2012-07-21 21:00) -# Wine version used : 1.3.9, 1.3.11, 1.3.15, 1.3.18, 1.3.19, 1.3.23, 1.3.24, 1.2.3, 1.3.28, 1.3.37, 1.4.1 -# Distribution used to test : Debian Testing +# Last revision : (2017-04-30 03:04 Paris) +# Wine version used : 2.4-staging +# Distribution used to test : Ubuntu 16.04 LTS # Author : Tinou +# Author : Fivelek # Licence : Retail # Only For : http://www.playonlinux.com # -# Ce script est partculier, il permet d'installer Steam sur autant de préfixe qu'on -# souhaite. +# Ce script est particulier, il permet d'installer Steam sur autant de préfixe qu'on +# le souhaite. # # Il faut donc être vigilent, et mettre le moins de paquets possible, pour que # l'utilisateur puisse les réinstaller à sa guise. Il est facile d'installer vcrun2005, @@ -27,7 +28,7 @@ source "$PLAYONLINUX/lib/sources" TITLE="Steam" -WINEVERSION="1.7.53-steam_crossoverhack" +WINEVERSION="2.4-staging" GAME_VMS="256" #starting the script @@ -49,6 +50,8 @@ POL_System_SetArch "x86" # forcing x86 to avoid any possible x64 related bugs POL_Wine_PrefixCreate "$WINEVERSION" +Set_OS "winxp" + # Installing mandatory dependencies POL_Wine_InstallFonts POL_Call POL_Install_corefonts @@ -79,6 +82,7 @@ #POL_SetupWindow_message "$(eval_gettext 'If you encounter problems with some games, try to disable Steam Overlay')" "$TITLE" +POL_SetupWindow_message "$(eval_gettext 'To get the Store and other web things working (steamwebhelper.exe), you have to add the argument -cef-no-sandbox in the PlayOnLinux configuration of Steam and ONLY use Windows XP as the Windows version of Wine. You can change the Windows version to play games that requires an higher version of Windows but Steam functionalities that requires the web browser would not work at all.')" "$TITLE" POL_SetupWindow_message "$(eval_gettext 'If you want to install $TITLE in another virtual drive\nRun this installer again')" "$TITLE" New source code#!/bin/bash
# Date : (2010-02-10 16:30)
# Last revision : (2017-04-30 03:04 Paris)
# Wine version used : 2.4-staging
# Distribution used to test : Ubuntu 16.04 LTS
# Author : Tinou
# Author : Fivelek
# Licence : Retail
# Only For : http://www.playonlinux.com
#
# Ce script est particulier, il permet d'installer Steam sur autant de préfixe qu'on
# le souhaite.
#
# Il faut donc être vigilent, et mettre le moins de paquets possible, pour que
# l'utilisateur puisse les réinstaller à sa guise. Il est facile d'installer vcrun2005,
# par contre il est difficile de le désinstaller.
#
# On installe donc seulement gecko qui est indispensable, et on évite le reste
#
##############################################################
# CHANGELOG
# [SuperPlumus] (2013-06-09 15-47)
# gettext
[ "$PLAYONLINUX" = "" ] && exit 0
source "$PLAYONLINUX/lib/sources"
TITLE="Steam"
WINEVERSION="2.4-staging"
GAME_VMS="256"
#starting the script
POL_SetupWindow_Init
POL_SetupWindow_presentation "$TITLE" "Valve" "http://www.valvesoftware.com/" "Tinou" "$PREFIX"
# Si le prefix existe, on propose d'en faire un autre
if [ -e "$POL_USER_ROOT/wineprefix/Steam" ]; then
POL_SetupWindow_textbox "$(eval_gettext 'Please choose a virtual drive name')" "$TITLE"
PREFIX="$APP_ANSWER"
else
PREFIX="Steam"
fi
# Setting prefix path
POL_Wine_SelectPrefix "$PREFIX"
# Downloading wine if necessary and creating prefix
POL_System_SetArch "x86" # forcing x86 to avoid any possible x64 related bugs
POL_Wine_PrefixCreate "$WINEVERSION"
Set_OS "winxp"
# Installing mandatory dependencies
POL_Wine_InstallFonts
POL_Call POL_Install_corefonts
POL_Function_FontsSmoothRGB
POL_Wine_OverrideDLL "" "dwrite"
#downloading latest Steam
cd "$POL_USER_ROOT/wineprefix/$PREFIX/drive_c/"
#POL_Download "http://cdn.steampowered.com/download/$STEAM_EXEC" ""
#Installing Steam
cd "$POL_USER_ROOT/wineprefix/$PREFIX/drive_c/"
POL_Download "http://media.steampowered.com/client/installer/SteamSetup.exe"
POL_Wine_WaitBefore "$TITLE"
POL_Wine "SteamSetup.exe"
# Asking about memory size of graphic card
POL_SetupWindow_VMS "$GAME_VMS"
## Fix for Steam
# Note : semble ne plus être nécéssaire désormais?
POL_Wine_OverrideDLL "" "gameoverlayrenderer"
## End Fix
# Making shortcut
POL_Shortcut "Steam.exe" "$TITLE"
#POL_SetupWindow_message "$(eval_gettext 'If you encounter problems with some games, try to disable Steam Overlay')" "$TITLE"
POL_SetupWindow_message "$(eval_gettext 'To get the Store and other web things working (steamwebhelper.exe), you have to add the argument -cef-no-sandbox in the PlayOnLinux configuration of Steam and ONLY use Windows XP as the Windows version of Wine. You can change the Windows version to play games that requires an higher version of Windows but Steam functionalities that requires the web browser would not work at all.')" "$TITLE"
POL_SetupWindow_message "$(eval_gettext 'If you want to install $TITLE in another virtual drive\nRun this installer again')" "$TITLE"
POL_SetupWindow_Close
exit 0 Replies |
||
| marytheidiot | Sunday 16 April 2017 at 22:56 | ||
marytheidiot
|
MessageI'm sorry if this is the wrong place for this, but how do I change the audio dtiver to alsa? I can see the that the current driver is winepulse.drv, but I can't change it. I'm trying to play Tales of Zestiria but the audio is absolutely terrible and I read online that changing the driver could fix it. Replies |
||
| TungdilGoudhand | Wednesday 1 March 2017 at 22:45 | ||
TungdilGoudhand
|
MessageHi, Steam runs fine but i can't seems to connect with the Chat, and my friends. In age of empires 2 it means i can't be invited to a game, or invite a friend myself. I can, however play a multiplyplayergame. So it's nothing Port-related. It's PLayonlinux on an Ubuntu 16.4 64 Bit Thinkpad.
Thanks in advance. Replies |
||
| ScissorMeWhiskers | Saturday 18 February 2017 at 12:02 | ||
ScissorMeWhiskers
|
MessageHi I'm having a problem with steam on mac. Everything works fine, but when a game i installed needs to update it gets stuck at 100% at steam freezes. It freezes even when I close and reopen steam. The only way to fix it is to completely reinstall steam which is pretty annoying seeing as a game on steam updates fairly often. Is there a fix for this? Besides this issue steam on PlayOnMac is working amazing [: I'm running OSX Sierra btw (not sure if it matters or not) Replies |
||
| Jolijt | Friday 27 January 2017 at 1:48 | ||
Jolijt
|
MessageHello, Steam installed well, but when I wanted to play Age of Empires 2 with DLC, it froze at the start of a new game. Setting the Wine version for Steam to 2.0 fixed it. I am new to PlayOnMac and I don't know if I will break the instances of other people by suggesting to set it to 2.0. What should I do? Thanks! Replies |
||
| Zabuza | Sunday 15 January 2017 at 2:07 | ||
|
Zabuza
|
MessageError, what can i do?: 0x100aa6d9: int $3 Replies |
||
| tsteele | Tuesday 10 January 2017 at 0:15 | ||
tsteele
|
MessageI try to open downloaded games from the steam wine. Before I open the app, playonmac says that there is an error. this is the debug log lemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting [01/09/17 15:59:46] - Running wine-1.7.53-steam_crossoverhack Steam.exe (Working directory : /Users/tylersteele/Library/PlayOnMac/wineprefix/Steam/drive_c/Program Files/Steam) [2017-01-09 15:59:50] Startup - updater built Dec 19 2016 18:19:01
Looks like steam didn't shutdown cleanly, scheduling immediate update check
[2017-01-09 15:59:50] Checking for update on startup
[2017-01-09 15:59:50] Checking for available updates...
[2017-01-09 15:59:51] Package file ssa2017_all.zip.c06a903610427aa7038d861c8bb68c18ea06ee5e missing or incorrect size
[2017-01-09 15:59:51] Downloading update (0 of 480 KB)...
[2017-01-09 15:59:51] Downloading update (480 of 480 KB)...
[2017-01-09 15:59:51] Download complete.
[2017-01-09 15:59:51] uninstalled manifest found in C:\Program Files\Steam\package\steam_client_win32 (1).
[2017-01-09 15:59:51] Found pending update
[2017-01-09 15:59:51] Installing update...
[2017-01-09 15:59:51] Extracting package...
[2017-01-09 15:59:58] Installing update...
[2017-01-09 15:59:59] Cleaning up...
[2017-01-09 15:59:59] Update complete, launching Steam...
[2017-01-09 15:59:59] Shutdown
[0109/160000:ERROR:network_change_notifier_win.cc(170)] WSALookupServiceBegin failed with: 8
[01/09/17 16:00:14] - Running wine-1.7.53-steam_crossoverhack Steam.exe (Working directory : /Users/tylersteele/Library/PlayOnMac/wineprefix/Steam/drive_c/Program Files/Steam) fixme:ver:GetCurrentPackageId (0x33e490 0x0): stub fixme:process:ProcessIdToSessionId Unsupported for other processes. [0109/160024:WARNING:raw_channel.cc(208)] Shutting down RawChannel with write buffer nonempty
wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._initialize_onexit_table, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting wine: Call from 0x7b835080 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._seh_filter_dll, aborting
perezj |
Friday 2 December 2016 at 11:38 |
|
perezj
|
MessageI try to download steam and i can't , i have the message L'adresse n'a pas été reconnue Firefox ne sait pas ouvrir cette adresse car l'un des protocoles suivants (playonlinux) n'est associé à aucun programme ou n'est pas autorisé dans ce contexte. Il est peut-être nécessaire d'installer une autre application pour ouvrir ce type d'adresse. Replies |
||
| AsciiWolf | Saturday 22 October 2016 at 22:02 | ||
AsciiWolf
|
WarningThis update has not been approved yet by the team. Differences@@ -21,13 +21,14 @@ # CHANGELOG # [SuperPlumus] (2013-06-09 15-47) +# [AsciiWolf] (2016-10-22 20-00) # gettext [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" TITLE="Steam" -WINEVERSION="1.7.53-steam_crossoverhack" +WINEVERSION="1.9.20-staging" GAME_VMS="256" #starting the script New source code#!/bin/bash
# Date : (2010-02-10 16:30)
# Last revision : (2012-07-21 21:00)
# Wine version used : 1.3.9, 1.3.11, 1.3.15, 1.3.18, 1.3.19, 1.3.23, 1.3.24, 1.2.3, 1.3.28, 1.3.37, 1.4.1
# Distribution used to test : Debian Testing
# Author : Tinou
# Licence : Retail
# Only For : http://www.playonlinux.com
#
# Ce script est partculier, il permet d'installer Steam sur autant de préfixe qu'on
# souhaite.
#
# Il faut donc être vigilent, et mettre le moins de paquets possible, pour que
# l'utilisateur puisse les réinstaller à sa guise. Il est facile d'installer vcrun2005,
# par contre il est difficile de le désinstaller.
#
# On installe donc seulement gecko qui est indispensable, et on évite le reste
#
##############################################################
# CHANGELOG
# [SuperPlumus] (2013-06-09 15-47)
# [AsciiWolf] (2016-10-22 20-00)
# gettext
[ "$PLAYONLINUX" = "" ] && exit 0
source "$PLAYONLINUX/lib/sources"
TITLE="Steam"
WINEVERSION="1.9.20-staging"
GAME_VMS="256"
#starting the script
POL_SetupWindow_Init
POL_SetupWindow_presentation "$TITLE" "Valve" "http://www.valvesoftware.com/" "Tinou" "$PREFIX"
# Si le prefix existe, on propose d'en faire un autre
if [ -e "$POL_USER_ROOT/wineprefix/Steam" ]; then
POL_SetupWindow_textbox "$(eval_gettext 'Please choose a virtual drive name')" "$TITLE"
PREFIX="$APP_ANSWER"
else
PREFIX="Steam"
fi
# Setting prefix path
POL_Wine_SelectPrefix "$PREFIX"
# Downloading wine if necessary and creating prefix
POL_System_SetArch "x86" # forcing x86 to avoid any possible x64 related bugs
POL_Wine_PrefixCreate "$WINEVERSION"
# Installing mandatory dependencies
POL_Wine_InstallFonts
POL_Call POL_Install_corefonts
POL_Function_FontsSmoothRGB
POL_Wine_OverrideDLL "" "dwrite"
#downloading latest Steam
cd "$POL_USER_ROOT/wineprefix/$PREFIX/drive_c/"
#POL_Download "http://cdn.steampowered.com/download/$STEAM_EXEC" ""
#Installing Steam
cd "$POL_USER_ROOT/wineprefix/$PREFIX/drive_c/"
POL_Download "http://media.steampowered.com/client/installer/SteamSetup.exe"
POL_Wine_WaitBefore "$TITLE"
POL_Wine "SteamSetup.exe"
# Asking about memory size of graphic card
POL_SetupWindow_VMS "$GAME_VMS"
## Fix for Steam
# Note : semble ne plus être nécéssaire désormais?
POL_Wine_OverrideDLL "" "gameoverlayrenderer"
## End Fix
# Making shortcut
POL_Shortcut "Steam.exe" "$TITLE"
#POL_SetupWindow_message "$(eval_gettext 'If you encounter problems with some games, try to disable Steam Overlay')" "$TITLE"
POL_SetupWindow_message "$(eval_gettext 'If you want to install $TITLE in another virtual drive\nRun this installer again')" "$TITLE"
POL_SetupWindow_Close
exit 0 Replies |
||
| AsciiWolf | Sunday 16 October 2016 at 12:36 | ||
AsciiWolf
|
MessageCould anyone please update the installer to use more recent version of Wine? Thanks! Replies |
||
| PrBulbasaur | Tuesday 27 September 2016 at 18:33 | ||
PrBulbasaur
|
MessageRebonjour, Steam ne veux pas se connecter au magasin Steam et à la Communauté, mais il arrive tout de même à se connecter au chat avec mes amis. De plus, lorsque je lance GameMaker:Studio avec Steam, celui ci lance le programme d'installation de Microsoft .NET, mais le programme ne se télécharge jamais, comme si il n'y avait pas internet Merci d'avance de votre aide. Replies |
||
| PrBulbasaur | Sunday 11 September 2016 at 8:45 | ||
PrBulbasaur
|
MessageBonjour, j'ai eu un problème avec Steam, le logiciel en lui même fonctionne très bien, mais dès que je veux lancer un jeu (qui est censé fonctionner sous windows) Steam affiche la fenêtre "Lancment de [insérez le nom d'un jeu]" mais ne le lance jamais (j'ai attendu trèèèèès longtemps), et ce pour tout mes jeux Steam. Merci d'avance de votre aide. Replies |
||
| Liszur | Sunday 26 June 2016 at 20:45 | ||
Liszur
|
MessageHy,
0x100aa6d9: int $3
Modules:
Module Address Debug info Name (102 modules)
PE 400000- 6d6000 Deferred steamwebhelper
PE 2d70000- 2e87000 Deferred crashhandler
PE 10000000-130eb000 Export libcef
ELF 7b800000-7ba6b000 Deferred kernel32<elf>
\-PE 7b820000-7ba6b000 \ kernel32
ELF 7bc00000-7bcf0000 Dwarf ntdll<elf>
\-PE 7bc10000-7bcf0000 \ ntdll
ELF 7bf00000-7bf03000 Deferred <wine-loader>
ELF 7d512000-7d58f000 Deferred wininet<elf>
\-PE 7d520000-7d58f000 \ wininet
ELF 7d58f000-7d600000 Deferred setupapi<elf>
\-PE 7d5a0000-7d600000 \ setupapi
ELF 7d705000-7d950000 Deferred shell32<elf>
\-PE 7d710000-7d950000 \ shell32
ELF 7d9f3000-7da1a000 Deferred mpr<elf>
\-PE 7da00000-7da1a000 \ mpr
ELF 7da7f000-7da94000 Deferred libtasn1.so.6
ELF 7da94000-7dacb000 Deferred p11-kit-trust.so
ELF 7dacb000-7dae1000 Deferred libgpg-error.so.0
ELF 7dae1000-7db43000 Deferred libp11-kit.so.0
ELF 7db4e000-7db63000 Deferred gnome-keyring-pkcs11.so
ELF 7db63000-7dbe8000 Deferred libgcrypt.so.11
ELF 7dbe8000-7dcb1000 Deferred libgnutls.so.26
ELF 7dcb1000-7dcea000 Deferred uxtheme<elf>
\-PE 7dcc0000-7dcea000 \ uxtheme
ELF 7dcea000-7dcf1000 Deferred libxfixes.so.3
ELF 7dcf1000-7dcfc000 Deferred libxcursor.so.1
ELF 7dcfc000-7dd0f000 Deferred libxi.so.6
ELF 7dd0f000-7dd13000 Deferred libxcomposite.so.1
ELF 7dd13000-7dd20000 Deferred libxrandr.so.2
ELF 7dd20000-7dd2c000 Deferred libxrender.so.1
ELF 7dd2c000-7dd33000 Deferred libxxf86vm.so.1
ELF 7dd33000-7dd37000 Deferred libxinerama.so.1
ELF 7dd37000-7dd3e000 Deferred libxdmcp.so.6
ELF 7dd3e000-7dd42000 Deferred libxau.so.6
ELF 7dd42000-7dd68000 Deferred libxcb.so.1
ELF 7dd68000-7deb3000 Deferred libx11.so.6
ELF 7deb3000-7dec8000 Deferred libxext.so.6
ELF 7decb000-7ded4000 Deferred libffi.so.6
ELF 7ded4000-7dee6000 Deferred libtasn1.so.3
ELF 7dee8000-7df7c000 Deferred winex11<elf>
\-PE 7def0000-7df7c000 \ winex11
ELF 7df7c000-7dfa0000 Deferred imm32<elf>
\-PE 7df80000-7dfa0000 \ imm32
ELF 7dfee000-7e018000 Deferred libexpat.so.1
ELF 7e018000-7e061000 Deferred libfontconfig.so.1
ELF 7e061000-7e08c000 Deferred libpng12.so.0
ELF 7e08c000-7e0a5000 Deferred libz.so.1
ELF 7e0a5000-7e155000 Deferred libfreetype.so.6
ELF 7e155000-7e190000 Deferred ws2_32<elf>
\-PE 7e160000-7e190000 \ ws2_32
ELF 7e190000-7e1a9000 Deferred libresolv.so.2
ELF 7e1c9000-7e1f1000 Deferred iphlpapi<elf>
\-PE 7e1d0000-7e1f1000 \ iphlpapi
ELF 7e1f1000-7e220000 Deferred netapi32<elf>
\-PE 7e200000-7e220000 \ netapi32
ELF 7e220000-7e253000 Deferred secur32<elf>
\-PE 7e230000-7e253000 \ secur32
ELF 7e253000-7e27d000 Deferred msacm32<elf>
\-PE 7e260000-7e27d000 \ msacm32
ELF 7e27d000-7e337000 Deferred winmm<elf>
\-PE 7e290000-7e337000 \ winmm
ELF 7e337000-7e396000 Deferred oleacc<elf>
\-PE 7e340000-7e396000 \ oleacc
ELF 7e396000-7e4a2000 Deferred comctl32<elf>
\-PE 7e3a0000-7e4a2000 \ comctl32
ELF 7e4a2000-7e4b9000 Deferred wtsapi32<elf>
\-PE 7e4b0000-7e4b9000 \ wtsapi32
ELF 7e4b9000-7e4d1000 Deferred userenv<elf>
\-PE 7e4c0000-7e4d1000 \ userenv
ELF 7e4d1000-7e614000 Deferred oleaut32<elf>
\-PE 7e4f0000-7e614000 \ oleaut32
ELF 7e614000-7e69a000 Deferred rpcrt4<elf>
\-PE 7e620000-7e69a000 \ rpcrt4
ELF 7e69a000-7e7e0000 Deferred ole32<elf>
\-PE 7e6b0000-7e7e0000 \ ole32
ELF 7e7e0000-7e85b000 Deferred shlwapi<elf>
\-PE 7e7f0000-7e85b000 \ shlwapi
ELF 7e85b000-7e86e000 Deferred psapi<elf>
\-PE 7e860000-7e86e000 \ psapi
ELF 7e86e000-7e8b2000 Deferred usp10<elf>
\-PE 7e870000-7e8b2000 \ usp10
ELF 7e8ca000-7e944000 Deferred advapi32<elf>
\-PE 7e8e0000-7e944000 \ advapi32
ELF 7e944000-7ea65000 Deferred gdi32<elf>
\-PE 7e950000-7ea65000 \ gdi32
ELF 7ea65000-7ebc3000 Deferred user32<elf>
\-PE 7ea80000-7ebc3000 \ user32
ELF 7ebc3000-7ebd6000 Deferred libnss_files.so.2
ELF 7ebd6000-7ebe3000 Deferred libnss_nis.so.2
ELF 7ebe3000-7ebfe000 Deferred libnsl.so.1
ELF 7ebfe000-7ec08000 Deferred libnss_compat.so.2
ELF 7ef8b000-7efe0000 Deferred libm.so.6
ELF 7efe7000-7f000000 Deferred version<elf>
\-PE 7eff0000-7f000000 \ version
ELF f73d9000-f73de000 Deferred libdl.so.2
ELF f73de000-f7594000 Dwarf libc.so.6
ELF f7594000-f75b1000 Dwarf libpthread.so.0
ELF f75b7000-f75c0000 Deferred librt.so.1
ELF f75d2000-f7788000 Dwarf libwine.so.1
ELF f778a000-f77af000 Deferred ld-linux.so.2
ELF f77b1000-f77b2000 Deferred [vdso].so
Threads:
process tid prio (all id:s are in hex)
00000008 Steam.exe
00000057 0
00000056 0
0000004d 0
0000004b 0
00000048 0
00000038 0
00000033 0
00000017 0
00000036 0
00000035 0
0000000b 15
00000021 0
00000022 0
0000003b 0
0000003a 0
00000039 0
00000037 1
00000034 0
00000032 0
00000047 0
00000045 0
00000044 0
00000043 0
00000040 0
00000009 0
0000000e services.exe
0000003f 0
0000001d 0
00000014 0
00000010 0
0000000f 0
00000012 winedevice.exe
0000001c 0
00000019 0
00000018 0
00000013 0
0000001a plugplay.exe
00000020 0
0000001f 0
0000001b 0
00000023 explorer.exe
00000029 0
00000028 0
00000027 0
00000024 0
00000041 (D) C:\Program Files\Steam\bin\steamwebhelper.exe
00000055 0
00000016 0
00000031 0
00000030 0
0000002f 0
0000002e 0
0000002d 0
0000003e 0
0000001e 0 <==
0000003c 0
0000003d 0
00000025 0
00000026 0
0000002c 0
0000002b 0
0000002a 0
0000000d 0
0000000c 0
00000042 0
00000051 steamwebhelper.exe
0000005b 0
0000005a 0
00000059 0
00000058 0
00000052 0
System information:
Wine build: wine-1.8
Platform: i386
Version: Windows 7
Host system: Linux
Host version: 4.4.0-24-generic
Replies |
||
| Bapkoala | Tuesday 15 March 2016 at 20:21 | ||
Bapkoala
|
MessageBonjour ! Je tiens a signaler un problême plutôt genant : tous les caractères à l'intérieur de l'application steam en dehors des jeux sont remplacés par des Carrés (comme quand on reçoit pas un smiley ^^). Je n'ai pas de messages d'erreurs et ne peux donc pas en poster un ici. (Ps: pour signaler qu'un programme marche et un autre non sur steam c'est ou ? ^^. Bioshock 1 marche très bien, mais pas dawn of war :/ ou l'image est noir, le son est pourtant là et on vois le curseur changer d'apparence quelques secondes)
Replies |
||
| Pedroguitou | Friday 23 October 2015 at 2:37 | ||
Pedroguitou
|
MessageBonjour. J'espère que je post au bon endroit, mais j'ai un problème avec Steam, je n'arrive pas à lancer le jeu que je viens d'acheter : Blood Bowl 2. Je suis sur MAC OS X YOSEMITE, version 10.10.5 Ma version de POM est la 4.2.9 Ca me dit que c'est peut-être une erreur dans le programme ou un défaut dans Wine. La version de Wine que j'ai installé est la 1.7.53-steam_crossoverhack
Je précise que j'arrive à lancer mon autre jeu steam, à savoir blood bowl chaos edition.
Voici les détails de l'erreur du problème : ( Ce qui est du charabia pour moi ^^ )
Unhandled exception: page fault on execute access to 0x001100b8 in 32-bit code (0x001100b8). Register dump: CS:001b SS:0023 DS:0023 ES:0023 FS:1007 GS:000f EIP:001100b8 ESP:0033eb8c EBP:0033ec08 EFLAGS:00010246( R- -- I Z- -P- ) EAX:0014d198 EBX:0033ed88 ECX:001100b8 EDX:0033ed88 ESI:4c3de7cc EDI:0033eb90 Stack dump: 0x0033eb8c: 450f7e54 0014d198 4c3de7cc 0033ed88 0x0033eb9c: 450f778c 00157d58 4c3e7581 001100f0 0x0033ebac: 4c3e7581 00000003 00000000 0033ec08 0x0033ebbc: 40004395 4c3e7581 450f7d54 00000000 0x0033ebcc: ffffffff 00157d58 0033ed88 4c3de7cc 0x0033ebdc: 00157d58 0033ed88 4c3de7cc 0014d198 0200: sel=1007 base=7ffc0000 limit=00000fff 32-bit rw- Backtrace: =>0 0x001100b8 (0x0033ec08) 1 0x4c3a0023 D3D11CreateDevice+0x332() in d3d11 (0x0033ee34) 2 0x0041250b in bloodbowl2 (+0x1250a) (0x0033efd4) 3 0x00402306 in bloodbowl2 (+0x2305) (0x0033fe14) 4 0x004198a9 in bloodbowl2 (+0x198a8) (0x0033fe60) 5 0x7b8724fc call_process_entry+0xb() in kernel32 (0x0033fe78) 6 0x7b8763db start_process+0x1ca() in kernel32 (0x0033fee8) 7 0x7bca19fc call_thread_func_wrapper+0xb() in ntdll (0x0033fef8) 8 0x7bca4dcb call_thread_func+0x6a() in ntdll (0x0033ffa8) 9 0x7bca19c2 call_thread_entry_point+0x11() in ntdll (0x0033ffc8) 10 0x7bc5f82b start_process+0x2a() in ntdll (0x0033ffe8) 11 0x4000a69d wine_call_on_stack+0x1c() in libwine.1.0.dylib (0x00000000) 12 0x4000a7c1 wine_switch_to_stack+0x30() in libwine.1.0.dylib (0xfeffef28) 13 0x7bc5f366 LdrInitializeThunk+0x465() in ntdll (0xfeffeff8) 14 0x7b872ebd __wine_kernel_init+0x99c() in kernel32 (0xfeffff28) 15 0x7bc600e2 __wine_process_init+0x1a1() in ntdll (0xfeffff88) 16 0x92a19c25 _pthread_body+0x89() in libsystem_pthread.dylib (0xfeffffa8) 17 0x92a19b9b _pthread_start+0xa1() in libsystem_pthread.dylib (0xfeffffc8) 18 0x92a16e32 thread_start+0x21() in libsystem_pthread.dylib (0xfeffffec) 0x001100b8: enter $0x1100,$0x0 Modules: Module Address Debug info Name (243 modules) PE 400000- 524000 Export bloodbowl2 PE 10000000-100c8000 Deferred sdl2 PE 40001000-401bd000 Stabs libwine.1.0.dylib ELF 41b1e000-41bbd000 Deferred advapi32<elf> \-PE 41b20000-41ba5000 \ advapi32 ELF 41bbd000-41bdb000 Deferred version<elf> \-PE 41bc0000-41bd9000 \ version ELF 41d00000-41ec0000 Deferred user32<elf> \-PE 41d10000-41e75000 \ user32 ELF 41ec0000-41f6b000 Deferred shlwapi<elf> \-PE 41ed0000-41f45000 \ shlwapi ELF 41f6b000-41fa0000 Deferred msacm32<elf> \-PE 41f70000-41f9b000 \ msacm32 ELF 41fa0000-41fca000 Deferred imm32<elf> \-PE 41fb0000-41fc5000 \ imm32 ELF 4474f000-448b7000 Deferred gdi32<elf> \-PE 44750000-44848000 \ gdi32 ELF 448b7000-44b6e000 Deferred shell32<elf> \-PE 448c0000-44b2c000 \ shell32 ELF 44b6e000-44c43000 Deferred winmm<elf> \-PE 44b70000-44c32000 \ winmm ELF 44c43000-44dfa000 Deferred ole32<elf> \-PE 44c50000-44db8000 \ ole32 ELF 44dfa000-44eb8000 Deferred rpcrt4<elf> \-PE 44e00000-44e95000 \ rpcrt4 ELF 44eb8000-45059000 Deferred oleaut32<elf> \-PE 44ec0000-45005000 \ oleaut32 PE 45059000-450e6000 Deferred libfreetype.6.dylib ELF 450e6000-4511e000 Deferred dxgi<elf> \-PE 450f0000-4510e000 \ dxgi ELF 4511e000-45329000 Deferred wined3d<elf> \-PE 45120000-4530c000 \ wined3d ELF 45329000-453f2000 Deferred winemac<elf> \-PE 45330000-453c9000 \ winemac PE 480a8000-48127000 Deferred clouddocs PE 4a800000-4aee8000 Deferred appleintelhd5000graphicsgldriver ELF 4c38a000-4c403000 Stabs d3d11<elf> \-PE 4c390000-4c3e8000 \ d3d11 ELF 7a800000-7a962000 Deferred opengl32<elf> \-PE 7a810000-7a922000 \ opengl32 ELF 7b800000-7bab7000 Stabs kernel32<elf> \-PE 7b810000-7ba7b000 \ kernel32 ELF 7bc00000-7bd3f000 Stabs ntdll<elf> \-PE 7bc10000-7bcff000 \ ntdll ELF 7bf00000-7bf04000 Deferred <wine-loader> PE 90008000-900f3000 Deferred libcrypto.0.9.8.dylib PE 900f3000-9013b000 Deferred applejpeg PE 9013b000-9014f000 Deferred sharing PE 90157000-90244000 Deferred libvmisc.dylib PE 90244000-90310000 Deferred backup PE 90310000-90398000 Deferred osservices PE 90398000-90781000 Deferred liblapack.dylib PE 907d5000-907d6000 Deferred liblaunch.dylib PE 907d6000-907df000 Deferred libsystem_dnssd.dylib PE 907df000-90836000 Deferred libc++.1.dylib PE 90945000-90975000 Deferred dictionaryservices PE 90975000-90978000 Deferred loginsupport PE 90978000-90b6f000 Deferred libicucore.a.dylib PE 90b6f000-90b70000 Deferred coreservices PE 90b70000-90cf9000 Deferred audiotoolbox PE 90cf9000-90d08000 Deferred speechrecognitioncore PE 90d08000-90d17000 Deferred opengl PE 90d17000-90d25000 Deferred speechsynthesis PE 90d25000-90d29000 Deferred help PE 90d29000-90d2a000 Deferred libopenscriptingutil.dylib PE 90d2a000-91085000 Deferred libmecabra.dylib PE 910c6000-910d0000 Deferred diskarbitration PE 910d0000-910d1000 Deferred libkeymgr.dylib PE 910d1000-910d6000 Deferred libgif.dylib PE 910d6000-9114d000 Deferred searchkit PE 9119e000-912e3000 Deferred imageio PE 912e3000-91f10000 Deferred appkit PE 91f10000-91fdc000 Deferred discrecording PE 91fdc000-9202e000 Deferred opencl PE 9202e000-92145000 Deferred desktopservicespriv PE 9214a000-9217e000 Deferred coreservicesinternal PE 9217e000-92186000 Deferred speechrecognition PE 92193000-925c7000 Deferred facecore PE 925c7000-925f5000 Deferred protectedcloudstorage PE 925f5000-92613000 Deferred libcrfsuite.dylib PE 92613000-92721000 Deferred libvdsp.dylib PE 929c3000-929d5000 Deferred libbsm.0.dylib PE 929d5000-929fc000 Deferred iconservices PE 929fc000-92a16000 Deferred libsystem_malloc.dylib PE 92a16000-92a1f000 Stabs libsystem_pthread.dylib PE 92a1f000-92a20000 Deferred veclib PE 92a20000-92c10000 Deferred libobjc.a.dylib PE 92c10000-92c13000 Deferred libradiance.dylib PE 92c13000-92c18000 Deferred iosurface PE 92c18000-92c21000 Deferred findmydevice PE 92c21000-92c2b000 Deferred libcopyfile.dylib PE 931c1000-931cc000 Deferred carbonsound PE 931cc000-931ec000 Deferred libsystem_kernel.dylib PE 931ec000-93248000 Deferred libtiff.dylib PE 93248000-93283000 Deferred debugsymbols PE 93283000-93285000 Deferred trustevaluationagent PE 93521000-93549000 Deferred libdispatch.dylib PE 935ea000-935eb000 Deferred applicationservices PE 93663000-93768000 Deferred libjp2.dylib PE 93768000-93780000 Deferred liblinearalgebra.dylib PE 93783000-93790000 Deferred libcommoncrypto.dylib PE 93909000-9390d000 Deferred libdyld.dylib PE 942d4000-942d7000 Deferred libsystem_configuration.dylib PE 942d7000-942d9000 Deferred libsystem_blocks.dylib PE 942d9000-9430e000 Deferred coredaemon PE 9430e000-94364000 Deferred coreaudio PE 94364000-94366000 Deferred libdiagnosticmessagesclient.dyli PE 94366000-943cb000 Deferred ae PE 94cd9000-94d2b000 Deferred libcups.2.dylib PE 94d2b000-94d3f000 Deferred corebluetooth PE 94d3f000-9513b000 Deferred coregraphics PE 9513b000-95144000 Deferred netfs PE 95144000-95155000 Deferred libgl.dylib PE 95155000-95163000 Deferred libbz2.1.0.dylib PE 95163000-95167000 Deferred servicemanagement PE 95167000-95202000 Deferred colorsync PE 95202000-95209000 Deferred libsystem_networkextension.dylib PE 9521f000-95246000 Deferred libxpc.dylib PE 95246000-95281000 Deferred mediakit PE 95281000-95636000 Deferred corefoundation PE 95636000-95643000 Deferred libcsfde.dylib PE 95647000-9564c000 Deferred commonpanels PE 9564c000-956ca000 Deferred iokit PE 956ca000-957bb000 Deferred diskimages PE 957bb000-957bc000 Deferred carbon PE 95865000-95874000 Deferred libz.1.dylib PE 95874000-958a2000 Deferred glrendererfloat PE 96251000-96257000 Deferred print PE 96257000-9641d000 Deferred quartzcore PE 9641d000-96423000 Deferred libcompiler_rt.dylib PE 96423000-964b6000 Deferred coresymbolication PE 964b6000-9650b000 Deferred hiservices PE 97527000-975b5000 Deferred performanceanalysis PE 975b5000-975c5000 Deferred libxar.1.dylib PE 975c5000-976b7000 Deferred libiconv.2.dylib PE 976b7000-976b9000 Deferred libremovefile.dylib PE 976b9000-97725000 Deferred corewifi PE 97725000-97748000 Deferred multitouchsupport PE 9789c000-978e6000 Deferred libfontregistry.dylib PE 978e6000-978f0000 Deferred libsystem_notify.dylib PE 978f0000-97930000 Deferred navigationservices PE 97930000-97934000 Deferred libextension.dylib PE 97934000-97a4b000 Deferred coretext PE 97a4b000-97a89000 Deferred libsystem_network.dylib PE 97a89000-97abd000 Deferred libsystem_m.dylib PE 97abd000-97b5b000 Deferred ink PE 97b5b000-97b5e000 Deferred securityhi PE 97b5e000-97b7a000 Deferred cfopendirectory PE 97bce000-97bf9000 Deferred libxslt.1.dylib PE 97bf9000-97c1e000 Deferred apple80211 PE 97c1e000-97c28000 Deferred applesrp PE 97c28000-97c48000 Deferred libresolv.9.dylib PE 97c49000-97c52000 Deferred fsevents PE 97fd6000-98412000 Deferred vimage PE 98412000-98445000 Deferred gss PE 98445000-9881f000 Deferred hitoolbox PE 98826000-9883b000 Deferred imagecapture PE 9883b000-9884c000 Deferred langanalysis PE 988a6000-98c08000 Deferred foundation PE 98c08000-98c1a000 Deferred libsystem_coretls.dylib PE 98c44000-98c48000 Deferred libpam.2.dylib PE 98c48000-98c50000 Deferred libunwind.dylib PE 98c50000-98cac000 Deferred languagemodeling PE 98cac000-98d53000 Deferred metadata PE 98d76000-98d79000 Deferred libsystem_secinit.dylib PE 9922a000-9926b000 Deferred libglimage.dylib PE 9926b000-992e2000 Deferred securityfoundation PE 992e2000-99309000 Deferred libc++abi.dylib PE 99431000-99432000 Deferred libunc.dylib PE 99432000-99446000 Deferred libcmph.dylib PE 99446000-9953d000 Deferred libxml2.2.dylib PE 995ae000-995db000 Deferred chunkinglibrary PE 995db000-995f6000 Deferred liblzma.5.dylib PE 995f6000-995fd000 Deferred libsystem_trace.dylib PE 995fd000-99610000 Deferred libsasl2.2.dylib PE 99610000-99616000 Deferred libmacho.dylib PE 99616000-99623000 Deferred libkxld.dylib PE 99650000-9966e000 Deferred ubiquity PE 99985000-9998e000 Deferred libcgcms.a.dylib PE 9998e000-99b3d000 Deferred glengine PE 99b3d000-99bd3000 Deferred libsystem_c.dylib PE 99bd3000-99c10000 Deferred remoteviewservices PE 99cca000-99cee000 Deferred libjpeg.dylib PE 99cee000-99de6000 Deferred libfontparser.dylib PE 99de6000-99e5b000 Deferred heimdal PE 99e5b000-99e60000 Deferred tcc PE 99e60000-99ed8000 Deferred ats PE 99f86000-9a285000 Deferred carboncore PE 9a285000-9a2b4000 Deferred libarchive.2.dylib PE 9a2b4000-9a355000 Deferred qd PE 9a355000-9a371000 Deferred openscripting PE 9a371000-9a3de000 Deferred datadetectorscore PE 9a3de000-9a669000 Deferred security PE 9a669000-9a677000 Deferred protocolbuffer PE 9a677000-9a678000 Deferred audiounit PE 9a678000-9a6d6000 Deferred printcore PE 9a6d6000-9a717000 Deferred symbolication PE 9a717000-9a76d000 Deferred htmlrendering PE 9a76d000-9a779000 Deferred netauth PE 9a779000-9a786000 Deferred libgpusupportmercury.dylib PE 9aa0c000-9aa10000 Deferred libutil.dylib PE 9aa10000-9aa13000 Deferred libsystem_coreservices.dylib PE 9aa13000-9aa3d000 Deferred libsystem_info.dylib PE 9aa3d000-9aa7e000 Deferred libauto.dylib PE 9aa7e000-9aa83000 Deferred libcache.dylib PE 9aa83000-9aa85000 Deferred libsystem.b.dylib PE 9aa85000-9aa88000 Deferred libsystem_sandbox.dylib PE 9aa88000-9aa95000 Deferred crashreportersupport PE 9aa95000-9aa97000 Deferred liblangid.dylib PE 9aa97000-9aadb000 Deferred libglu.dylib PE 9aadb000-9ac0a000 Deferred coreui PE 9ac0a000-9ac8a000 Deferred systemconfiguration PE 9ac92000-9ac97000 Deferred libcorevmclient.dylib PE 9ac97000-9af2f000 Deferred coredata PE 9af2f000-9b062000 Deferred uifoundation PE 9b062000-9b07c000 Deferred kerberos PE 9b07c000-9b0e9000 Deferred libcorecrypto.dylib PE 9b0e9000-9b0ee000 Deferred libheimdal-asn1.dylib PE 9b0ee000-9b10e000 Deferred generationalstorage PE 9b423000-9b426000 Deferred efilogin PE 9b426000-9b5b8000 Deferred libsqlite3.dylib PE 9b5b8000-9b769000 Deferred libglprogrammability.dylib PE 9b769000-9b7b9000 Deferred libcurl.4.dylib PE 9b7b9000-9b7c3000 Deferred commonauth PE 9b852000-9b88d000 Deferred ldap PE 9b88d000-9b901000 Deferred corewlan PE 9b901000-9b90f000 Deferred opendirectory PE 9b90f000-9b9bf000 Deferred iobluetooth PE 9b9bf000-9b9c2000 Deferred libquarantine.dylib PE 9bb2f000-9bb39000 Deferred libgfxshared.dylib PE 9bb39000-9bb69000 Deferred corevideo PE 9bb69000-9bc1c000 Deferred libcorestorage.dylib PE 9bc1c000-9bd8e000 Deferred libblas.dylib PE 9bd8e000-9bd91000 Deferred libcvmspluginsupport.dylib PE 9bde5000-9bde6000 Deferred accelerate PE 9bde6000-9be0d000 Deferred libpng.dylib PE 9be0d000-9c100000 Deferred coreimage PE 9c100000-9c109000 Deferred libcldcpuengine.dylib PE 9c121000-9c139000 Deferred libsystem_asl.dylib PE 9c139000-9c140000 Deferred libsystem_platform.dylib PE 9c140000-9c145000 Deferred ioaccelerator PE 9c145000-9c356000 Deferred cfnetwork PE 9c391000-9c493000 Deferred launchservices Threads: process tid prio (all id:s are in hex) 00000008 Steam.exe 00000072 0 00000059 0 0000005a 0 0000005d 0 0000005e 0 00000060 0 00000065 0 0000003a 0 00000039 0 00000067 0 00000051 0 00000041 0 00000040 0 0000003f 0 0000003d 0 0000003c 0 0000003b 0 00000038 0 00000036 0 00000035 0 00000034 0 00000033 0 0000002e 0 0000002d 0 00000009 0 0000000e services.exe 00000020 0 0000001f 0 00000016 0 00000010 0 0000000f 0 00000012 winedevice.exe 0000001e 0 0000001b 0 0000001a 0 00000013 0 0000001c plugplay.exe 00000022 0 00000021 0 0000001d 0 00000023 explorer.exe 00000029 0 00000028 0 00000027 0 00000024 0 00000031 steamwebhelper.exe 0000006b 0 00000061 0 0000002a 0 00000050 0 0000004f 0 0000004e 0 0000004d 0 0000004c 0 0000004b 0 0000004a 0 00000049 0 00000048 0 00000018 0 00000019 0 00000025 0 00000026 0 0000000b 0 0000000d 0 0000000c 0 00000047 0 00000046 0 00000045 0 00000042 0 00000032 0 0000005f steamwebhelper.exe 0000007b 0 00000043 0 00000044 0 00000063 0 00000064 0 00000058 0 00000057 0 00000056 0 00000055 0 00000054 0 00000052 0 00000053 0 00000062 0 00000081 (D) C:\Program Files\Steam\steamapps\common\Blood Bowl 2\BloodBowl2.exe 00000082 0 <== System information: Wine build: wine-1.7.53 Platform: i386 Host system: Darwin Unhandled exception: page fault on execute access to 0x001100b8 in 32-bit code (0x001100b8).
Register dump:
CS:001b SS:0023 DS:0023 ES:0023 FS:1007 GS:000f
EIP:001100b8 ESP:0033eb8c EBP:0033ec08 EFLAGS:00010246( R- -- I Z- -P- )
EAX:0014d198 EBX:0033ed88 ECX:001100b8 EDX:0033ed88
ESI:4c3de7cc EDI:0033eb90
Stack dump:
0x0033eb8c: 450f7e54 0014d198 4c3de7cc 0033ed88
0x0033eb9c: 450f778c 00157d58 4c3e7581 001100f0
0x0033ebac: 4c3e7581 00000003 00000000 0033ec08
0x0033ebbc: 40004395 4c3e7581 450f7d54 00000000
0x0033ebcc: ffffffff 00157d58 0033ed88 4c3de7cc
0x0033ebdc: 00157d58 0033ed88 4c3de7cc 0014d198
0200: sel=1007 base=7ffc0000 limit=00000fff 32-bit rw-
Backtrace:
=>0 0x001100b8 (0x0033ec08)
1 0x4c3a0023 D3D11CreateDevice+0x332() in d3d11 (0x0033ee34)
2 0x0041250b in bloodbowl2 (+0x1250a) (0x0033efd4)
3 0x00402306 in bloodbowl2 (+0x2305) (0x0033fe14)
4 0x004198a9 in bloodbowl2 (+0x198a8) (0x0033fe60)
5 0x7b8724fc call_process_entry+0xb() in kernel32 (0x0033fe78)
6 0x7b8763db start_process+0x1ca() in kernel32 (0x0033fee8)
7 0x7bca19fc call_thread_func_wrapper+0xb() in ntdll (0x0033fef8)
8 0x7bca4dcb call_thread_func+0x6a() in ntdll (0x0033ffa8)
9 0x7bca19c2 call_thread_entry_point+0x11() in ntdll (0x0033ffc8)
10 0x7bc5f82b start_process+0x2a() in ntdll (0x0033ffe8)
11 0x4000a69d wine_call_on_stack+0x1c() in libwine.1.0.dylib (0x00000000)
12 0x4000a7c1 wine_switch_to_stack+0x30() in libwine.1.0.dylib (0xfeffef28)
13 0x7bc5f366 LdrInitializeThunk+0x465() in ntdll (0xfeffeff8)
14 0x7b872ebd __wine_kernel_init+0x99c() in kernel32 (0xfeffff28)
15 0x7bc600e2 __wine_process_init+0x1a1() in ntdll (0xfeffff88)
16 0x92a19c25 _pthread_body+0x89() in libsystem_pthread.dylib (0xfeffffa8)
17 0x92a19b9b _pthread_start+0xa1() in libsystem_pthread.dylib (0xfeffffc8)
18 0x92a16e32 thread_start+0x21() in libsystem_pthread.dylib (0xfeffffec)
0x001100b8: enter $0x1100,$0x0
Modules:
Module Address Debug info Name (243 modules)
PE 400000- 524000 Export bloodbowl2
PE 10000000-100c8000 Deferred sdl2
PE 40001000-401bd000 Stabs libwine.1.0.dylib
ELF 41b1e000-41bbd000 Deferred advapi32<elf>
\-PE 41b20000-41ba5000 \ advapi32
ELF 41bbd000-41bdb000 Deferred version<elf>
\-PE 41bc0000-41bd9000 \ version
ELF 41d00000-41ec0000 Deferred user32<elf>
\-PE 41d10000-41e75000 \ user32
ELF 41ec0000-41f6b000 Deferred shlwapi<elf>
\-PE 41ed0000-41f45000 \ shlwapi
ELF 41f6b000-41fa0000 Deferred msacm32<elf>
\-PE 41f70000-41f9b000 \ msacm32
ELF 41fa0000-41fca000 Deferred imm32<elf>
\-PE 41fb0000-41fc5000 \ imm32
ELF 4474f000-448b7000 Deferred gdi32<elf>
\-PE 44750000-44848000 \ gdi32
ELF 448b7000-44b6e000 Deferred shell32<elf>
\-PE 448c0000-44b2c000 \ shell32
ELF 44b6e000-44c43000 Deferred winmm<elf>
\-PE 44b70000-44c32000 \ winmm
ELF 44c43000-44dfa000 Deferred ole32<elf>
\-PE 44c50000-44db8000 \ ole32
ELF 44dfa000-44eb8000 Deferred rpcrt4<elf>
\-PE 44e00000-44e95000 \ rpcrt4
ELF 44eb8000-45059000 Deferred oleaut32<elf>
\-PE 44ec0000-45005000 \ oleaut32
PE 45059000-450e6000 Deferred libfreetype.6.dylib
ELF 450e6000-4511e000 Deferred dxgi<elf>
\-PE 450f0000-4510e000 \ dxgi
ELF 4511e000-45329000 Deferred wined3d<elf>
\-PE 45120000-4530c000 \ wined3d
ELF 45329000-453f2000 Deferred winemac<elf>
\-PE 45330000-453c9000 \ winemac
PE 480a8000-48127000 Deferred clouddocs
PE 4a800000-4aee8000 Deferred appleintelhd5000graphicsgldriver
ELF 4c38a000-4c403000 Stabs d3d11<elf>
\-PE 4c390000-4c3e8000 \ d3d11
ELF 7a800000-7a962000 Deferred opengl32<elf>
\-PE 7a810000-7a922000 \ opengl32
ELF 7b800000-7bab7000 Stabs kernel32<elf>
\-PE 7b810000-7ba7b000 \ kernel32
ELF 7bc00000-7bd3f000 Stabs ntdll<elf>
\-PE 7bc10000-7bcff000 \ ntdll
ELF 7bf00000-7bf04000 Deferred <wine-loader>
PE 90008000-900f3000 Deferred libcrypto.0.9.8.dylib
PE 900f3000-9013b000 Deferred applejpeg
PE 9013b000-9014f000 Deferred sharing
PE 90157000-90244000 Deferred libvmisc.dylib
PE 90244000-90310000 Deferred backup
PE 90310000-90398000 Deferred osservices
PE 90398000-90781000 Deferred liblapack.dylib
PE 907d5000-907d6000 Deferred liblaunch.dylib
PE 907d6000-907df000 Deferred libsystem_dnssd.dylib
PE 907df000-90836000 Deferred libc++.1.dylib
PE 90945000-90975000 Deferred dictionaryservices
PE 90975000-90978000 Deferred loginsupport
PE 90978000-90b6f000 Deferred libicucore.a.dylib
PE 90b6f000-90b70000 Deferred coreservices
PE 90b70000-90cf9000 Deferred audiotoolbox
PE 90cf9000-90d08000 Deferred speechrecognitioncore
PE 90d08000-90d17000 Deferred opengl
PE 90d17000-90d25000 Deferred speechsynthesis
PE 90d25000-90d29000 Deferred help
PE 90d29000-90d2a000 Deferred libopenscriptingutil.dylib
PE 90d2a000-91085000 Deferred libmecabra.dylib
PE 910c6000-910d0000 Deferred diskarbitration
PE 910d0000-910d1000 Deferred libkeymgr.dylib
PE 910d1000-910d6000 Deferred libgif.dylib
PE 910d6000-9114d000 Deferred searchkit
PE 9119e000-912e3000 Deferred imageio
PE 912e3000-91f10000 Deferred appkit
PE 91f10000-91fdc000 Deferred discrecording
PE 91fdc000-9202e000 Deferred opencl
PE 9202e000-92145000 Deferred desktopservicespriv
PE 9214a000-9217e000 Deferred coreservicesinternal
PE 9217e000-92186000 Deferred speechrecognition
PE 92193000-925c7000 Deferred facecore
PE 925c7000-925f5000 Deferred protectedcloudstorage
PE 925f5000-92613000 Deferred libcrfsuite.dylib
PE 92613000-92721000 Deferred libvdsp.dylib
PE 929c3000-929d5000 Deferred libbsm.0.dylib
PE 929d5000-929fc000 Deferred iconservices
PE 929fc000-92a16000 Deferred libsystem_malloc.dylib
PE 92a16000-92a1f000 Stabs libsystem_pthread.dylib
PE 92a1f000-92a20000 Deferred veclib
PE 92a20000-92c10000 Deferred libobjc.a.dylib
PE 92c10000-92c13000 Deferred libradiance.dylib
PE 92c13000-92c18000 Deferred iosurface
PE 92c18000-92c21000 Deferred findmydevice
PE 92c21000-92c2b000 Deferred libcopyfile.dylib
PE 931c1000-931cc000 Deferred carbonsound
PE 931cc000-931ec000 Deferred libsystem_kernel.dylib
PE 931ec000-93248000 Deferred libtiff.dylib
PE 93248000-93283000 Deferred debugsymbols
PE 93283000-93285000 Deferred trustevaluationagent
PE 93521000-93549000 Deferred libdispatch.dylib
PE 935ea000-935eb000 Deferred applicationservices
PE 93663000-93768000 Deferred libjp2.dylib
PE 93768000-93780000 Deferred liblinearalgebra.dylib
PE 93783000-93790000 Deferred libcommoncrypto.dylib
PE 93909000-9390d000 Deferred libdyld.dylib
PE 942d4000-942d7000 Deferred libsystem_configuration.dylib
PE 942d7000-942d9000 Deferred libsystem_blocks.dylib
PE 942d9000-9430e000 Deferred coredaemon
PE 9430e000-94364000 Deferred coreaudio
PE 94364000-94366000 Deferred libdiagnosticmessagesclient.dyli
PE 94366000-943cb000 Deferred ae
PE 94cd9000-94d2b000 Deferred libcups.2.dylib
PE 94d2b000-94d3f000 Deferred corebluetooth
PE 94d3f000-9513b000 Deferred coregraphics
PE 9513b000-95144000 Deferred netfs
PE 95144000-95155000 Deferred libgl.dylib
PE 95155000-95163000 Deferred libbz2.1.0.dylib
PE 95163000-95167000 Deferred servicemanagement
PE 95167000-95202000 Deferred colorsync
PE 95202000-95209000 Deferred libsystem_networkextension.dylib
PE 9521f000-95246000 Deferred libxpc.dylib
PE 95246000-95281000 Deferred mediakit
PE 95281000-95636000 Deferred corefoundation
PE 95636000-95643000 Deferred libcsfde.dylib
PE 95647000-9564c000 Deferred commonpanels
PE 9564c000-956ca000 Deferred iokit
PE 956ca000-957bb000 Deferred diskimages
PE 957bb000-957bc000 Deferred carbon
PE 95865000-95874000 Deferred libz.1.dylib
PE 95874000-958a2000 Deferred glrendererfloat
PE 96251000-96257000 Deferred print
PE 96257000-9641d000 Deferred quartzcore
PE 9641d000-96423000 Deferred libcompiler_rt.dylib
PE 96423000-964b6000 Deferred coresymbolication
PE 964b6000-9650b000 Deferred hiservices
PE 97527000-975b5000 Deferred performanceanalysis
PE 975b5000-975c5000 Deferred libxar.1.dylib
PE 975c5000-976b7000 Deferred libiconv.2.dylib
PE 976b7000-976b9000 Deferred libremovefile.dylib
PE 976b9000-97725000 Deferred corewifi
PE 97725000-97748000 Deferred multitouchsupport
PE 9789c000-978e6000 Deferred libfontregistry.dylib
PE 978e6000-978f0000 Deferred libsystem_notify.dylib
PE 978f0000-97930000 Deferred navigationservices
PE 97930000-97934000 Deferred libextension.dylib
PE 97934000-97a4b000 Deferred coretext
PE 97a4b000-97a89000 Deferred libsystem_network.dylib
PE 97a89000-97abd000 Deferred libsystem_m.dylib
PE 97abd000-97b5b000 Deferred ink
PE 97b5b000-97b5e000 Deferred securityhi
PE 97b5e000-97b7a000 Deferred cfopendirectory
PE 97bce000-97bf9000 Deferred libxslt.1.dylib
PE 97bf9000-97c1e000 Deferred apple80211
PE 97c1e000-97c28000 Deferred applesrp
PE 97c28000-97c48000 Deferred libresolv.9.dylib
PE 97c49000-97c52000 Deferred fsevents
PE 97fd6000-98412000 Deferred vimage
PE 98412000-98445000 Deferred gss
PE 98445000-9881f000 Deferred hitoolbox
PE 98826000-9883b000 Deferred imagecapture
PE 9883b000-9884c000 Deferred langanalysis
PE 988a6000-98c08000 Deferred foundation
PE 98c08000-98c1a000 Deferred libsystem_coretls.dylib
PE 98c44000-98c48000 Deferred libpam.2.dylib
PE 98c48000-98c50000 Deferred libunwind.dylib
PE 98c50000-98cac000 Deferred languagemodeling
PE 98cac000-98d53000 Deferred metadata
PE 98d76000-98d79000 Deferred libsystem_secinit.dylib
PE 9922a000-9926b000 Deferred libglimage.dylib
PE 9926b000-992e2000 Deferred securityfoundation
PE 992e2000-99309000 Deferred libc++abi.dylib
PE 99431000-99432000 Deferred libunc.dylib
PE 99432000-99446000 Deferred libcmph.dylib
PE 99446000-9953d000 Deferred libxml2.2.dylib
PE 995ae000-995db000 Deferred chunkinglibrary
PE 995db000-995f6000 Deferred liblzma.5.dylib
PE 995f6000-995fd000 Deferred libsystem_trace.dylib
PE 995fd000-99610000 Deferred libsasl2.2.dylib
PE 99610000-99616000 Deferred libmacho.dylib
PE 99616000-99623000 Deferred libkxld.dylib
PE 99650000-9966e000 Deferred ubiquity
PE 99985000-9998e000 Deferred libcgcms.a.dylib
PE 9998e000-99b3d000 Deferred glengine
PE 99b3d000-99bd3000 Deferred libsystem_c.dylib
PE 99bd3000-99c10000 Deferred remoteviewservices
PE 99cca000-99cee000 Deferred libjpeg.dylib
PE 99cee000-99de6000 Deferred libfontparser.dylib
PE 99de6000-99e5b000 Deferred heimdal
PE 99e5b000-99e60000 Deferred tcc
PE 99e60000-99ed8000 Deferred ats
PE 99f86000-9a285000 Deferred carboncore
PE 9a285000-9a2b4000 Deferred libarchive.2.dylib
PE 9a2b4000-9a355000 Deferred qd
PE 9a355000-9a371000 Deferred openscripting
PE 9a371000-9a3de000 Deferred datadetectorscore
PE 9a3de000-9a669000 Deferred security
PE 9a669000-9a677000 Deferred protocolbuffer
PE 9a677000-9a678000 Deferred audiounit
PE 9a678000-9a6d6000 Deferred printcore
PE 9a6d6000-9a717000 Deferred symbolication
PE 9a717000-9a76d000 Deferred htmlrendering
PE 9a76d000-9a779000 Deferred netauth
PE 9a779000-9a786000 Deferred libgpusupportmercury.dylib
PE 9aa0c000-9aa10000 Deferred libutil.dylib
PE 9aa10000-9aa13000 Deferred libsystem_coreservices.dylib
PE 9aa13000-9aa3d000 Deferred libsystem_info.dylib
PE 9aa3d000-9aa7e000 Deferred libauto.dylib
PE 9aa7e000-9aa83000 Deferred libcache.dylib
PE 9aa83000-9aa85000 Deferred libsystem.b.dylib
PE 9aa85000-9aa88000 Deferred libsystem_sandbox.dylib
PE 9aa88000-9aa95000 Deferred crashreportersupport
PE 9aa95000-9aa97000 Deferred liblangid.dylib
PE 9aa97000-9aadb000 Deferred libglu.dylib
PE 9aadb000-9ac0a000 Deferred coreui
PE 9ac0a000-9ac8a000 Deferred systemconfiguration
PE 9ac92000-9ac97000 Deferred libcorevmclient.dylib
PE 9ac97000-9af2f000 Deferred coredata
PE 9af2f000-9b062000 Deferred uifoundation
PE 9b062000-9b07c000 Deferred kerberos
PE 9b07c000-9b0e9000 Deferred libcorecrypto.dylib
PE 9b0e9000-9b0ee000 Deferred libheimdal-asn1.dylib
PE 9b0ee000-9b10e000 Deferred generationalstorage
PE 9b423000-9b426000 Deferred efilogin
PE 9b426000-9b5b8000 Deferred libsqlite3.dylib
PE 9b5b8000-9b769000 Deferred libglprogrammability.dylib
PE 9b769000-9b7b9000 Deferred libcurl.4.dylib
PE 9b7b9000-9b7c3000 Deferred commonauth
PE 9b852000-9b88d000 Deferred ldap
PE 9b88d000-9b901000 Deferred corewlan
PE 9b901000-9b90f000 Deferred opendirectory
PE 9b90f000-9b9bf000 Deferred iobluetooth
PE 9b9bf000-9b9c2000 Deferred libquarantine.dylib
PE 9bb2f000-9bb39000 Deferred libgfxshared.dylib
PE 9bb39000-9bb69000 Deferred corevideo
PE 9bb69000-9bc1c000 Deferred libcorestorage.dylib
PE 9bc1c000-9bd8e000 Deferred libblas.dylib
PE 9bd8e000-9bd91000 Deferred libcvmspluginsupport.dylib
PE 9bde5000-9bde6000 Deferred accelerate
PE 9bde6000-9be0d000 Deferred libpng.dylib
PE 9be0d000-9c100000 Deferred coreimage
PE 9c100000-9c109000 Deferred libcldcpuengine.dylib
PE 9c121000-9c139000 Deferred libsystem_asl.dylib
PE 9c139000-9c140000 Deferred libsystem_platform.dylib
PE 9c140000-9c145000 Deferred ioaccelerator
PE 9c145000-9c356000 Deferred cfnetwork
PE 9c391000-9c493000 Deferred launchservices
Threads:
process tid prio (all id:s are in hex)
00000008 Steam.exe
00000072 0
00000059 0
0000005a 0
0000005d 0
0000005e 0
00000060 0
00000065 0
0000003a 0
00000039 0
00000067 0
00000051 0
00000041 0
00000040 0
0000003f 0
0000003d 0
0000003c 0
0000003b 0
00000038 0
00000036 0
00000035 0
00000034 0
00000033 0
0000002e 0
0000002d 0
00000009 0
0000000e services.exe
00000020 0
0000001f 0
00000016 0
00000010 0
0000000f 0
00000012 winedevice.exe
0000001e 0
0000001b 0
0000001a 0
00000013 0
0000001c plugplay.exe
00000022 0
00000021 0
0000001d 0
00000023 explorer.exe
00000029 0
00000028 0
00000027 0
00000024 0
00000031 steamwebhelper.exe
0000006b 0
00000061 0
0000002a 0
00000050 0
0000004f 0
0000004e 0
0000004d 0
0000004c 0
0000004b 0
0000004a 0
00000049 0
00000048 0
00000018 0
00000019 0
00000025 0
00000026 0
0000000b 0
0000000d 0
0000000c 0
00000047 0
00000046 0
00000045 0
00000042 0
00000032 0
0000005f steamwebhelper.exe
0000007b 0
00000043 0
00000044 0
00000063 0
00000064 0
00000058 0
00000057 0
00000056 0
00000055 0
00000054 0
00000052 0
00000053 0
00000062 0
00000081 (D) C:\Program Files\Steam\steamapps\common\Blood Bowl 2\BloodBowl2.exe
00000082 0 <==
System information:
Wine build: wine-1.7.53
Platform: i386
Host system: Darwin
Host version: 14.5.0
Unhandled exception: page fault on execute access to 0x001100b8 in 32-bit code (0x001100b8).
Register dump:
CS:001b SS:0023 DS:0023 ES:0023 FS:1007 GS:000f
EIP:001100b8 ESP:0033eb8c EBP:0033ec08 EFLAGS:00010246( R- -- I Z- -P- )
EAX:0014d198 EBX:0033ed88 ECX:001100b8 EDX:0033ed88
ESI:4c3de7cc EDI:0033eb90
Stack dump:
0x0033eb8c: 450f7e54 0014d198 4c3de7cc 0033ed88
0x0033eb9c: 450f778c 00157d58 4c3e7581 001100f0
0x0033ebac: 4c3e7581 00000003 00000000 0033ec08
0x0033ebbc: 40004395 4c3e7581 450f7d54 00000000
0x0033ebcc: ffffffff 00157d58 0033ed88 4c3de7cc
0x0033ebdc: 00157d58 0033ed88 4c3de7cc 0014d198
0200: sel=1007 base=7ffc0000 limit=00000fff 32-bit rw-
Backtrace:
=>0 0x001100b8 (0x0033ec08)
1 0x4c3a0023 D3D11CreateDevice+0x332() in d3d11 (0x0033ee34)
2 0x0041250b in bloodbowl2 (+0x1250a) (0x0033efd4)
3 0x00402306 in bloodbowl2 (+0x2305) (0x0033fe14)
4 0x004198a9 in bloodbowl2 (+0x198a8) (0x0033fe60)
5 0x7b8724fc call_process_entry+0xb() in kernel32 (0x0033fe78)
6 0x7b8763db start_process+0x1ca() in kernel32 (0x0033fee8)
7 0x7bca19fc call_thread_func_wrapper+0xb() in ntdll (0x0033fef8)
8 0x7bca4dcb call_thread_func+0x6a() in ntdll (0x0033ffa8)
9 0x7bca19c2 call_thread_entry_point+0x11() in ntdll (0x0033ffc8)
10 0x7bc5f82b start_process+0x2a() in ntdll (0x0033ffe8)
11 0x4000a69d wine_call_on_stack+0x1c() in libwine.1.0.dylib (0x00000000)
12 0x4000a7c1 wine_switch_to_stack+0x30() in libwine.1.0.dylib (0xfeffef28)
13 0x7bc5f366 LdrInitializeThunk+0x465() in ntdll (0xfeffeff8)
14 0x7b872ebd __wine_kernel_init+0x99c() in kernel32 (0xfeffff28)
15 0x7bc600e2 __wine_process_init+0x1a1() in ntdll (0xfeffff88)
16 0x92a19c25 _pthread_body+0x89() in libsystem_pthread.dylib (0xfeffffa8)
17 0x92a19b9b _pthread_start+0xa1() in libsystem_pthread.dylib (0xfeffffc8)
18 0x92a16e32 thread_start+0x21() in libsystem_pthread.dylib (0xfeffffec)
0x001100b8: enter $0x1100,$0x0
Modules:
Module Address Debug info Name (243 modules)
PE 400000- 524000 Export bloodbowl2
PE 10000000-100c8000 Deferred sdl2
PE 40001000-401bd000 Stabs libwine.1.0.dylib
ELF 41b1e000-41bbd000 Deferred advapi32<elf>
\-PE 41b20000-41ba5000 \ advapi32
ELF 41bbd000-41bdb000 Deferred version<elf>
\-PE 41bc0000-41bd9000 \ version
ELF 41d00000-41ec0000 Deferred user32<elf>
\-PE 41d10000-41e75000 \ user32
ELF 41ec0000-41f6b000 Deferred shlwapi<elf>
\-PE 41ed0000-41f45000 \ shlwapi
ELF 41f6b000-41fa0000 Deferred msacm32<elf>
\-PE 41f70000-41f9b000 \ msacm32
ELF 41fa0000-41fca000 Deferred imm32<elf>
\-PE 41fb0000-41fc5000 \ imm32
ELF 4474f000-448b7000 Deferred gdi32<elf>
\-PE 44750000-44848000 \ gdi32
ELF 448b7000-44b6e000 Deferred shell32<elf>
\-PE 448c0000-44b2c000 \ shell32
ELF 44b6e000-44c43000 Deferred winmm<elf>
\-PE 44b70000-44c32000 \ winmm
ELF 44c43000-44dfa000 Deferred ole32<elf>
\-PE 44c50000-44db8000 \ ole32
ELF 44dfa000-44eb8000 Deferred rpcrt4<elf>
\-PE 44e00000-44e95000 \ rpcrt4
ELF 44eb8000-45059000 Deferred oleaut32<elf>
\-PE 44ec0000-45005000 \ oleaut32
PE 45059000-450e6000 Deferred libfreetype.6.dylib
ELF 450e6000-4511e000 Deferred dxgi<elf>
\-PE 450f0000-4510e000 \ dxgi
ELF 4511e000-45329000 Deferred wined3d<elf>
\-PE 45120000-4530c000 \ wined3d
ELF 45329000-453f2000 Deferred winemac<elf>
\-PE 45330000-453c9000 \ winemac
PE 480a8000-48127000 Deferred clouddocs
PE 4a800000-4aee8000 Deferred appleintelhd5000graphicsgldriver
ELF 4c38a000-4c403000 Stabs d3d11<elf>
\-PE 4c390000-4c3e8000 \ d3d11
ELF 7a800000-7a962000 Deferred opengl32<elf>
\-PE 7a810000-7a922000 \ opengl32
ELF 7b800000-7bab7000 Stabs kernel32<elf>
\-PE 7b810000-7ba7b000 \ kernel32
ELF 7bc00000-7bd3f000 Stabs ntdll<elf>
\-PE 7bc10000-7bcff000 \ ntdll
ELF 7bf00000-7bf04000 Deferred <wine-loader>
PE 90008000-900f3000 Deferred libcrypto.0.9.8.dylib
PE 900f3000-9013b000 Deferred applejpeg
PE 9013b000-9014f000 Deferred sharing
PE 90157000-90244000 Deferred libvmisc.dylib
PE 90244000-90310000 Deferred backup
PE 90310000-90398000 Deferred osservices
PE 90398000-90781000 Deferred liblapack.dylib
PE 907d5000-907d6000 Deferred liblaunch.dylib
PE 907d6000-907df000 Deferred libsystem_dnssd.dylib
PE 907df000-90836000 Deferred libc++.1.dylib
PE 90945000-90975000 Deferred dictionaryservices
PE 90975000-90978000 Deferred loginsupport
PE 90978000-90b6f000 Deferred libicucore.a.dylib
PE 90b6f000-90b70000 Deferred coreservices
PE 90b70000-90cf9000 Deferred audiotoolbox
PE 90cf9000-90d08000 Deferred speechrecognitioncore
PE 90d08000-90d17000 Deferred opengl
PE 90d17000-90d25000 Deferred speechsynthesis
PE 90d25000-90d29000 Deferred help
PE 90d29000-90d2a000 Deferred libopenscriptingutil.dylib
PE 90d2a000-91085000 Deferred libmecabra.dylib
PE 910c6000-910d0000 Deferred diskarbitration
PE 910d0000-910d1000 Deferred libkeymgr.dylib
PE 910d1000-910d6000 Deferred libgif.dylib
PE 910d6000-9114d000 Deferred searchkit
PE 9119e000-912e3000 Deferred imageio
PE 912e3000-91f10000 Deferred appkit
PE 91f10000-91fdc000 Deferred discrecording
PE 91fdc000-9202e000 Deferred opencl
PE 9202e000-92145000 Deferred desktopservicespriv
PE 9214a000-9217e000 Deferred coreservicesinternal
PE 9217e000-92186000 Deferred speechrecognition
PE 92193000-925c7000 Deferred facecore
PE 925c7000-925f5000 Deferred protectedcloudstorage
PE 925f5000-92613000 Deferred libcrfsuite.dylib
PE 92613000-92721000 Deferred libvdsp.dylib
PE 929c3000-929d5000 Deferred libbsm.0.dylib
PE 929d5000-929fc000 Deferred iconservices
PE 929fc000-92a16000 Deferred libsystem_malloc.dylib
PE 92a16000-92a1f000 Stabs libsystem_pthread.dylib
PE 92a1f000-92a20000 Deferred veclib
PE 92a20000-92c10000 Deferred libobjc.a.dylib
PE 92c10000-92c13000 Deferred libradiance.dylib
PE 92c13000-92c18000 Deferred iosurface
PE 92c18000-92c21000 Deferred findmydevice
PE 92c21000-92c2b000 Deferred libcopyfile.dylib
PE 931c1000-931cc000 Deferred carbonsound
PE 931cc000-931ec000 Deferred libsystem_kernel.dylib
PE 931ec000-93248000 Deferred libtiff.dylib
PE 93248000-93283000 Deferred debugsymbols
PE 93283000-93285000 Deferred trustevaluationagent
PE 93521000-93549000 Deferred libdispatch.dylib
PE 935ea000-935eb000 Deferred applicationservices
PE 93663000-93768000 Deferred libjp2.dylib
PE 93768000-93780000 Deferred liblinearalgebra.dylib
PE 93783000-93790000 Deferred libcommoncrypto.dylib
PE 93909000-9390d000 Deferred libdyld.dylib
PE 942d4000-942d7000 Deferred libsystem_configuration.dylib
PE 942d7000-942d9000 Deferred libsystem_blocks.dylib
PE 942d9000-9430e000 Deferred coredaemon
PE 9430e000-94364000 Deferred coreaudio
PE 94364000-94366000 Deferred libdiagnosticmessagesclient.dyli
PE 94366000-943cb000 Deferred ae
PE 94cd9000-94d2b000 Deferred libcups.2.dylib
PE 94d2b000-94d3f000 Deferred corebluetooth
PE 94d3f000-9513b000 Deferred coregraphics
PE 9513b000-95144000 Deferred netfs
PE 95144000-95155000 Deferred libgl.dylib
PE 95155000-95163000 Deferred libbz2.1.0.dylib
PE 95163000-95167000 Deferred servicemanagement
PE 95167000-95202000 Deferred colorsync
PE 95202000-95209000 Deferred libsystem_networkextension.dylib
PE 9521f000-95246000 Deferred libxpc.dylib
PE 95246000-95281000 Deferred mediakit
PE 95281000-95636000 Deferred corefoundation
PE 95636000-95643000 Deferred libcsfde.dylib
PE 95647000-9564c000 Deferred commonpanels
PE 9564c000-956ca000 Deferred iokit
PE 956ca000-957bb000 Deferred diskimages
PE 957bb000-957bc000 Deferred carbon
PE 95865000-95874000 Deferred libz.1.dylib
PE 95874000-958a2000 Deferred glrendererfloat
PE 96251000-96257000 Deferred print
PE 96257000-9641d000 Deferred quartzcore
PE 9641d000-96423000 Deferred libcompiler_rt.dylib
PE 96423000-964b6000 Deferred coresymbolication
PE 964b6000-9650b000 Deferred hiservices
PE 97527000-975b5000 Deferred performanceanalysis
PE 975b5000-975c5000 Deferred libxar.1.dylib
PE 975c5000-976b7000 Deferred libiconv.2.dylib
PE 976b7000-976b9000 Deferred libremovefile.dylib
PE 976b9000-97725000 Deferred corewifi
PE 97725000-97748000 Deferred multitouchsupport
PE 9789c000-978e6000 Deferred libfontregistry.dylib
PE 978e6000-978f0000 Deferred libsystem_notify.dylib
PE 978f0000-97930000 Deferred navigationservices
PE 97930000-97934000 Deferred libextension.dylib
PE 97934000-97a4b000 Deferred coretext
PE 97a4b000-97a89000 Deferred libsystem_network.dylib
PE 97a89000-97abd000 Deferred libsystem_m.dylib
PE 97abd000-97b5b000 Deferred ink
PE 97b5b000-97b5e000 Deferred securityhi
PE 97b5e000-97b7a000 Deferred cfopendirectory
PE 97bce000-97bf9000 Deferred libxslt.1.dylib
PE 97bf9000-97c1e000 Deferred apple80211
PE 97c1e000-97c28000 Deferred applesrp
PE 97c28000-97c48000 Deferred libresolv.9.dylib
PE 97c49000-97c52000 Deferred fsevents
PE 97fd6000-98412000 Deferred vimage
PE 98412000-98445000 Deferred gss
PE 98445000-9881f000 Deferred hitoolbox
PE 98826000-9883b000 Deferred imagecapture
PE 9883b000-9884c000 Deferred langanalysis
PE 988a6000-98c08000 Deferred foundation
PE 98c08000-98c1a000 Deferred libsystem_coretls.dylib
PE 98c44000-98c48000 Deferred libpam.2.dylib
PE 98c48000-98c50000 Deferred libunwind.dylib
PE 98c50000-98cac000 Deferred languagemodeling
PE 98cac000-98d53000 Deferred metadata
PE 98d76000-98d79000 Deferred libsystem_secinit.dylib
PE 9922a000-9926b000 Deferred libglimage.dylib
PE 9926b000-992e2000 Deferred securityfoundation
PE 992e2000-99309000 Deferred libc++abi.dylib
PE 99431000-99432000 Deferred libunc.dylib
PE 99432000-99446000 Deferred libcmph.dylib
PE 99446000-9953d000 Deferred libxml2.2.dylib
PE 995ae000-995db000 Deferred chunkinglibrary
PE 995db000-995f6000 Deferred liblzma.5.dylib
PE 995f6000-995fd000 Deferred libsystem_trace.dylib
PE 995fd000-99610000 Deferred libsasl2.2.dylib
PE 99610000-99616000 Deferred libmacho.dylib
PE 99616000-99623000 Deferred libkxld.dylib
PE 99650000-9966e000 Deferred ubiquity
PE 99985000-9998e000 Deferred libcgcms.a.dylib
PE 9998e000-99b3d000 Deferred glengine
PE 99b3d000-99bd3000 Deferred libsystem_c.dylib
PE 99bd3000-99c10000 Deferred remoteviewservices
PE 99cca000-99cee000 Deferred libjpeg.dylib
PE 99cee000-99de6000 Deferred libfontparser.dylib
PE 99de6000-99e5b000 Deferred heimdal
PE 99e5b000-99e60000 Deferred tcc
PE 99e60000-99ed8000 Deferred ats
PE 99f86000-9a285000 Deferred carboncore
PE 9a285000-9a2b4000 Deferred libarchive.2.dylib
PE 9a2b4000-9a355000 Deferred qd
PE 9a355000-9a371000 Deferred openscripting
PE 9a371000-9a3de000 Deferred datadetectorscore
PE 9a3de000-9a669000 Deferred security
PE 9a669000-9a677000 Deferred protocolbuffer
PE 9a677000-9a678000 Deferred audiounit
PE 9a678000-9a6d6000 Deferred printcore
PE 9a6d6000-9a717000 Deferred symbolication
PE 9a717000-9a76d000 Deferred htmlrendering
PE 9a76d000-9a779000 Deferred netauth
PE 9a779000-9a786000 Deferred libgpusupportmercury.dylib
PE 9aa0c000-9aa10000 Deferred libutil.dylib
PE 9aa10000-9aa13000 Deferred libsystem_coreservices.dylib
PE 9aa13000-9aa3d000 Deferred libsystem_info.dylib
PE 9aa3d000-9aa7e000 Deferred libauto.dylib
PE 9aa7e000-9aa83000 Deferred libcache.dylib
PE 9aa83000-9aa85000 Deferred libsystem.b.dylib
PE 9aa85000-9aa88000 Deferred libsystem_sandbox.dylib
PE 9aa88000-9aa95000 Deferred crashreportersupport
PE 9aa95000-9aa97000 Deferred liblangid.dylib
PE 9aa97000-9aadb000 Deferred libglu.dylib
PE 9aadb000-9ac0a000 Deferred coreui
PE 9ac0a000-9ac8a000 Deferred systemconfiguration
PE 9ac92000-9ac97000 Deferred libcorevmclient.dylib
PE 9ac97000-9af2f000 Deferred coredata
PE 9af2f000-9b062000 Deferred uifoundation
PE 9b062000-9b07c000 Deferred kerberos
PE 9b07c000-9b0e9000 Deferred libcorecrypto.dylib
PE 9b0e9000-9b0ee000 Deferred libheimdal-asn1.dylib
PE 9b0ee000-9b10e000 Deferred generationalstorage
PE 9b423000-9b426000 Deferred efilogin
PE 9b426000-9b5b8000 Deferred libsqlite3.dylib
PE 9b5b8000-9b769000 Deferred libglprogrammability.dylib
PE 9b769000-9b7b9000 Deferred libcurl.4.dylib
PE 9b7b9000-9b7c3000 Deferred commonauth
PE 9b852000-9b88d000 Deferred ldap
PE 9b88d000-9b901000 Deferred corewlan
PE 9b901000-9b90f000 Deferred opendirectory
PE 9b90f000-9b9bf000 Deferred iobluetooth
PE 9b9bf000-9b9c2000 Deferred libquarantine.dylib
PE 9bb2f000-9bb39000 Deferred libgfxshared.dylib
PE 9bb39000-9bb69000 Deferred corevideo
PE 9bb69000-9bc1c000 Deferred libcorestorage.dylib
PE 9bc1c000-9bd8e000 Deferred libblas.dylib
PE 9bd8e000-9bd91000 Deferred libcvmspluginsupport.dylib
PE 9bde5000-9bde6000 Deferred accelerate
PE 9bde6000-9be0d000 Deferred libpng.dylib
PE 9be0d000-9c100000 Deferred coreimage
PE 9c100000-9c109000 Deferred libcldcpuengine.dylib
PE 9c121000-9c139000 Deferred libsystem_asl.dylib
PE 9c139000-9c140000 Deferred libsystem_platform.dylib
PE 9c140000-9c145000 Deferred ioaccelerator
PE 9c145000-9c356000 Deferred cfnetwork
PE 9c391000-9c493000 Deferred launchservices
Threads:
process tid prio (all id:s are in hex)
00000008 Steam.exe
00000072 0
00000059 0
0000005a 0
0000005d 0
0000005e 0
00000060 0
00000065 0
0000003a 0
00000039 0
00000067 0
00000051 0
00000041 0
00000040 0
0000003f 0
0000003d 0
0000003c 0
0000003b 0
00000038 0
00000036 0
00000035 0
00000034 0
00000033 0
0000002e 0
0000002d 0
00000009 0
0000000e services.exe
00000020 0
0000001f 0
00000016 0
00000010 0
0000000f 0
00000012 winedevice.exe
0000001e 0
0000001b 0
0000001a 0
00000013 0
0000001c plugplay.exe
00000022 0
00000021 0
0000001d 0
00000023 explorer.exe
00000029 0
00000028 0
00000027 0
00000024 0
00000031 steamwebhelper.exe
0000006b 0
00000061 0
0000002a 0
00000050 0
0000004f 0
0000004e 0
0000004d 0
0000004c 0
0000004b 0
0000004a 0
00000049 0
00000048 0
00000018 0
00000019 0
00000025 0
00000026 0
0000000b 0
0000000d 0
0000000c 0
00000047 0
00000046 0
00000045 0
00000042 0
00000032 0
0000005f steamwebhelper.exe
0000007b 0
00000043 0
00000044 0
00000063 0
00000064 0
00000058 0
00000057 0
00000056 0
00000055 0
00000054 0
00000052 0
00000053 0
00000062 0
00000081 (D) C:\Program Files\Steam\steamapps\common\Blood Bowl 2\BloodBowl2.exe
00000082 0 <==
System information:
Wine build: wine-1.7.53
Platform: i386
Host system: Darwin
Host version: 14.5.0
Un immense merci à qui saura m'aider. Bonne journée !
Replies |
||
| MTres19 | Thursday 22 October 2015 at 1:46 | ||
MTres19
|
WarningThis update has not been approved yet by the team. MessageThe patch in Wine 1.7.53-steam_crossoverhack apparently is now included in Wine-Staging (See https://www.phoronix.com/scan.php?page=news_item&px=Wine-Staging-1.7.53) and to avoid unnecessary installation of different versions of Wine, it seems that it would probably be best to go with Wine-Staging, since it's more likely to be reused. Just my opinion, though. Differences@@ -27,7 +27,7 @@ source "$PLAYONLINUX/lib/sources" TITLE="Steam" -WINEVERSION="1.7.53-steam_crossoverhack" +WINEVERSION="1.7.53-staging" GAME_VMS="256" #starting the script New source code#!/bin/bash
# Date : (2010-02-10 16:30)
# Last revision : (2012-07-21 21:00)
# Wine version used : 1.3.9, 1.3.11, 1.3.15, 1.3.18, 1.3.19, 1.3.23, 1.3.24, 1.2.3, 1.3.28, 1.3.37, 1.4.1
# Distribution used to test : Debian Testing
# Author : Tinou
# Licence : Retail
# Only For : http://www.playonlinux.com
#
# Ce script est partculier, il permet d'installer Steam sur autant de préfixe qu'on
# souhaite.
#
# Il faut donc être vigilent, et mettre le moins de paquets possible, pour que
# l'utilisateur puisse les réinstaller à sa guise. Il est facile d'installer vcrun2005,
# par contre il est difficile de le désinstaller.
#
# On installe donc seulement gecko qui est indispensable, et on évite le reste
#
##############################################################
# CHANGELOG
# [SuperPlumus] (2013-06-09 15-47)
# gettext
[ "$PLAYONLINUX" = "" ] && exit 0
source "$PLAYONLINUX/lib/sources"
TITLE="Steam"
WINEVERSION="1.7.53-staging"
GAME_VMS="256"
#starting the script
POL_SetupWindow_Init
POL_SetupWindow_presentation "$TITLE" "Valve" "http://www.valvesoftware.com/" "Tinou" "$PREFIX"
# Si le prefix existe, on propose d'en faire un autre
if [ -e "$POL_USER_ROOT/wineprefix/Steam" ]; then
POL_SetupWindow_textbox "$(eval_gettext 'Please choose a virtual drive name')" "$TITLE"
PREFIX="$APP_ANSWER"
else
PREFIX="Steam"
fi
# Setting prefix path
POL_Wine_SelectPrefix "$PREFIX"
# Downloading wine if necessary and creating prefix
POL_System_SetArch "x86" # forcing x86 to avoid any possible x64 related bugs
POL_Wine_PrefixCreate "$WINEVERSION"
# Installing mandatory dependencies
POL_Wine_InstallFonts
POL_Call POL_Install_corefonts
POL_Function_FontsSmoothRGB
POL_Wine_OverrideDLL "" "dwrite"
#downloading latest Steam
cd "$POL_USER_ROOT/wineprefix/$PREFIX/drive_c/"
#POL_Download "http://cdn.steampowered.com/download/$STEAM_EXEC" ""
#Installing Steam
cd "$POL_USER_ROOT/wineprefix/$PREFIX/drive_c/"
POL_Download "http://media.steampowered.com/client/installer/SteamSetup.exe"
POL_Wine_WaitBefore "$TITLE"
POL_Wine "SteamSetup.exe"
# Asking about memory size of graphic card
POL_SetupWindow_VMS "$GAME_VMS"
## Fix for Steam
# Note : semble ne plus être nécéssaire désormais?
POL_Wine_OverrideDLL "" "gameoverlayrenderer"
## End Fix
# Making shortcut
POL_Shortcut "Steam.exe" "$TITLE"
#POL_SetupWindow_message "$(eval_gettext 'If you encounter problems with some games, try to disable Steam Overlay')" "$TITLE"
POL_SetupWindow_message "$(eval_gettext 'If you want to install $TITLE in another virtual drive\nRun this installer again')" "$TITLE"
POL_SetupWindow_Close
exit 0 Replies |
||
| NorahAura | Tuesday 20 October 2015 at 23:37 | ||
NorahAura
|
MessageI am unable to install Rocket League since this update. I removed Steam, updated PlayonMac to the current version, installed Steam and now when I attempt to install Rocket League, it produces the error: "The program steamwebhelper.exe has encountered a serious problem and needs to close."
Replies |
||
| petch | Tuesday 20 October 2015 at 21:13 | ||
petch
Developer
|
WarningThis update has not been approved yet by the team. MessageUse Wine 1.7.53-steam_crossoverhack to work around bug #39403
Differences@@ -27,7 +27,7 @@ source "$PLAYONLINUX/lib/sources" TITLE="Steam" -WINEVERSION="1.7.33" +WINEVERSION="1.7.53-steam_crossoverhack" GAME_VMS="256" #starting the script New source code#!/bin/bash
# Date : (2010-02-10 16:30)
# Last revision : (2012-07-21 21:00)
# Wine version used : 1.3.9, 1.3.11, 1.3.15, 1.3.18, 1.3.19, 1.3.23, 1.3.24, 1.2.3, 1.3.28, 1.3.37, 1.4.1
# Distribution used to test : Debian Testing
# Author : Tinou
# Licence : Retail
# Only For : http://www.playonlinux.com
#
# Ce script est partculier, il permet d'installer Steam sur autant de préfixe qu'on
# souhaite.
#
# Il faut donc être vigilent, et mettre le moins de paquets possible, pour que
# l'utilisateur puisse les réinstaller à sa guise. Il est facile d'installer vcrun2005,
# par contre il est difficile de le désinstaller.
#
# On installe donc seulement gecko qui est indispensable, et on évite le reste
#
##############################################################
# CHANGELOG
# [SuperPlumus] (2013-06-09 15-47)
# gettext
[ "$PLAYONLINUX" = "" ] && exit 0
source "$PLAYONLINUX/lib/sources"
TITLE="Steam"
WINEVERSION="1.7.53-steam_crossoverhack"
GAME_VMS="256"
#starting the script
POL_SetupWindow_Init
POL_SetupWindow_presentation "$TITLE" "Valve" "http://www.valvesoftware.com/" "Tinou" "$PREFIX"
# Si le prefix existe, on propose d'en faire un autre
if [ -e "$POL_USER_ROOT/wineprefix/Steam" ]; then
POL_SetupWindow_textbox "$(eval_gettext 'Please choose a virtual drive name')" "$TITLE"
PREFIX="$APP_ANSWER"
else
PREFIX="Steam"
fi
# Setting prefix path
POL_Wine_SelectPrefix "$PREFIX"
# Downloading wine if necessary and creating prefix
POL_System_SetArch "x86" # forcing x86 to avoid any possible x64 related bugs
POL_Wine_PrefixCreate "$WINEVERSION"
# Installing mandatory dependencies
POL_Wine_InstallFonts
POL_Call POL_Install_corefonts
POL_Function_FontsSmoothRGB
POL_Wine_OverrideDLL "" "dwrite"
#downloading latest Steam
cd "$POL_USER_ROOT/wineprefix/$PREFIX/drive_c/"
#POL_Download "http://cdn.steampowered.com/download/$STEAM_EXEC" ""
#Installing Steam
cd "$POL_USER_ROOT/wineprefix/$PREFIX/drive_c/"
POL_Download "http://media.steampowered.com/client/installer/SteamSetup.exe"
POL_Wine_WaitBefore "$TITLE"
POL_Wine "SteamSetup.exe"
# Asking about memory size of graphic card
POL_SetupWindow_VMS "$GAME_VMS"
## Fix for Steam
# Note : semble ne plus être nécéssaire désormais?
POL_Wine_OverrideDLL "" "gameoverlayrenderer"
## End Fix
# Making shortcut
POL_Shortcut "Steam.exe" "$TITLE"
#POL_SetupWindow_message "$(eval_gettext 'If you encounter problems with some games, try to disable Steam Overlay')" "$TITLE"
POL_SetupWindow_message "$(eval_gettext 'If you want to install $TITLE in another virtual drive\nRun this installer again')" "$TITLE"
POL_SetupWindow_Close
exit 0 Replies |
||
| superbigmax | Monday 19 October 2015 at 21:40 | ||
superbigmax
|
MessageSince the update from payday 2 on october 17th 2015 the game no longer works on my pc. When I press the play button on steam it displays "preparing to launch payday 2" but the game doesn't launch. The line around my avatar turns green (which means you're ingame) for a few seconds then turns back to blue (which means you're online but not ingame). I use playonlinux 4.2.9 and wine 1.7.50 on ubuntu 15.04. Other games I play with steam still work fine. hardware: Processor: Intel® Core™ i3-4150 CPU @ 3.50GHz × 4. Graphics: Intel® Haswell Also since a few weeks I can't view the store or community page in the steam application anymore but they still work fine on the steam website. I searched multiple forums couldn't find any solutions. I verified the game cache, didn't work. I don't know what to try next, any suggestions? Replies |
||
| someguy | Friday 9 October 2015 at 16:59 | ||
someguy
|
MessageI am running arch linux and the latest POL version. Installed Steam with it but I cannot access any page, just loading and trying to connect. I read somewhere that I should also install Internet Explorer 8, which I did. But this one cannot connect either and therefore does not load any page too. Replies |
||
| Moon_LS | Tuesday 22 September 2015 at 21:53 | ||
Moon_LS
|
|||
| abcdeeeeff | Monday 31 August 2015 at 11:47 | ||
abcdeeeeff
|
MessageWhen I try to install steam the steam installer has a very little windows, which make it impossible to install it. Screenshot(the window is just in the middle of the screen): Replies |
||
| Smaxwellington | Wednesday 12 August 2015 at 13:39 | ||
Smaxwellington
|
MessageHi all, I am having issues running Steam and I hope this is the correct place to post - if not please redirect me to the right place. I'm also not so technically-savvy, so I apologise if I'm missing something in my description of my problem. I have installed Steam using Play on Mac. I am running OS X Yosemite 10.10.3 on a 13-inch MacBook Pro (circa mid-2010). Installation went through successfully, but when I now launch Steam a box appears that says "The program steamwebhelper.exe has encountered a serious problem and needs to close..." Steam then remains open for about 60 seconds and then crashes. Pressing 'Debug' on Play on Mac I get the following log (sorry for the length!). [08/12/15 21:34:50] - Running wine-1.7.49 Steam.exe (Working directory : /Users/vanessaausten/Library/PlayOnMac/wineprefix/Steam_/drive_c/Program Files/Steam) fixme:ver:GetCurrentPackageId (0x33e490 0x0): stub fixme:winhttp:WinHttpDetectAutoProxyConfigUrl discovery via DHCP not supported fixme:winsock:WSAIoctl ignoring keepalive interval fixme:winsock:WSAIoctl ignoring keepalive interval fixme:advapi:EventRegister {47a9201e-73b0-42ce-9821-7e134361bc6f}, 0x3f006c50, 0x3f040ce8, 0x3f040ce0 fixme:advapi:EventRegister {58a9201e-73b0-42ce-9821-7e134361bc70}, 0x3f006c50, 0x3f040d20, 0x3f040d18 fixme:advapi:EventRegister {3fa9201e-73b0-43fe-9821-7e145359bc6f}, 0x3f006c50, 0x3f040cb0, 0x3f040ca8 fixme:advapi:EventRegister {1432afee-73b0-42ce-9821-7e134361b433}, 0x3f006c50, 0x3f040d58, 0x3f040d50 fixme:advapi:EventRegister {4372afee-73b0-42ce-9821-7e134361b519}, 0x3f006c50, 0x3f040d90, 0x3f040d88 fixme:process:SetProcessShutdownParameters (00000100, 00000000): partial stub. fixme:imm:ImmGetOpenStatus (0x1ebff00): semi-stub fixme:ver:GetCurrentPackageId (0x33e254 0x0): stub fixme:ole:RemUnknown_QueryInterface No interface for iid {00000019-0000-0000-c000-000000000046} fixme:dwmapi:DwmSetWindowAttribute (0x30056, 2, 0x33e864, 4) stub fixme:ver:GetCurrentPackageId (0x31e400 0x0): stub fixme:heap:RtlSetHeapInformation 0x110000 0 0x33fbec 4 stub fixme:process:SetProcessDEPPolicy (3): stub fixme:heap:RtlSetHeapInformation 0x0 1 0x0 0 stub fixme:thread:GetThreadPreferredUILanguages 56, 0x33f7b4, 0x0 0x33f7b8 fixme:winsock:WSALookupServiceBeginW (0x33f6a4 0x00000ff0 0x33f6e0) Stub! [0812/213458:ERROR:network_change_notifier_win.cc(173)] WSALookupServiceBegin failed with: 8 fixme:iphlpapi:NotifyAddrChange (Handle 0x33f7ec, overlapped 0x185330): stub fixme:win:RegisterDeviceNotificationW (hwnd=0x2003e, filter=0x33f7f8,flags=0x00000000) returns a fake device notification handle! fixme:win:RegisterDeviceNotificationW (hwnd=0x2003e, filter=0x33f7f8,flags=0x00000000) returns a fake device notification handle! fixme:ver:GetCurrentPackageId (0x33f3e4 0x0): stub fixme:win:EnumDisplayDevicesW ((null),0,0x33f130,0x00000000), stub! fixme:wbemprox:wbem_locator_ConnectServer unsupported flags fixme:wbemprox:client_security_SetBlanket 0x43f41870, 0x206a948, 10, 0, (null), 3, 3, 0x0, 0x00000000 fixme:wbemprox:client_security_Release 0x43f41870 fixme:ver:GetCurrentPackageId (0x33fba8 0x0): stub fixme:wbemprox:wbem_locator_ConnectServer unsupported flags fixme:wbemprox:client_security_SetBlanket 0x43f41870, 0x2086b90, 10, 0, (null), 3, 3, 0x0, 0x00000000 fixme:wbemprox:client_security_Release 0x43f41870 fixme:hnetcfg:fw_apps_get__NewEnum 0x2086b48, 0x5eef13c fixme:hnetcfg:fw_app_put_ProcessImageFileName 0x2086b48, L"C:\\Program Files\\Steam\\steam.exe" fixme:hnetcfg:fw_app_put_Name 0x2086b48, L"Steam" fixme:hnetcfg:fw_app_put_Enabled 0x2086b48, -1 fixme:hnetcfg:fw_apps_Add 0x2086cb0, 0x2086b48 err:ole:CoGetClassObject class {e2b3c97f-6ae1-41ac-817a-f6f92166d7dd} not registered err:ole:CoGetClassObject no class object {e2b3c97f-6ae1-41ac-817a-f6f92166d7dd} could be created for context 0x1 fixme:wbemprox:enum_class_object_Next timeout not supported fixme:wbemprox:enum_class_object_Next timeout not supported fixme:wbemprox:enum_class_object_Next timeout not supported fixme:wbemprox:enum_class_object_Next timeout not supported fixme:wbemprox:enum_class_object_Next timeout not supported fixme:wbemprox:enum_class_object_Next timeout not supported fixme:advapi:StopTraceA (0, "Steam Event Tracing", 0x59ee964) stub fixme:advapi:StartTraceA (0x59ee9f0, "Steam Event Tracing", 0x59ee964) stub fixme:advapi:OpenTraceA 0x59ee7c4: stub fixme:advapi:EnableTrace (1, 0x10, 4, {22fb2cd6-0e7b-422b-a0c7-2fad1fd0e716}, cafe4242): stub fixme:advapi:CloseTrace cafe4242: stub fixme:advapi:ProcessTrace 0x60fa168 1 0x0 0x0: stub fixme:iphlpapi:NotifyAddrChange (Handle 0x31703cc, overlapped 0x31703d0): stub fixme:ntdll:NtQuerySystemInformation info_class SYSTEM_HANDLE_INFORMATION fixme:win:RegisterDeviceNotificationA (hwnd=0x60122, filter=0x68ff12c,flags=0x00000004) returns a fake device notification handle! err:ole:CoGetClassObject class {77f10cf0-3db5-4966-b520-b7c54fd35ed6} not registered err:ole:CoGetClassObject no class object {77f10cf0-3db5-4966-b520-b7c54fd35ed6} could be created for context 0x1 fixme:ntdll:NtLockFile I/O completion on lock not implemented yet fixme:ntdll:NtLockFile I/O completion on lock not implemented yet fixme:imm:ImmReleaseContext (0x20120, 0x20fc968): stub fixme:winsock:WSAIoctl ignoring keepalive interval fixme:win:RegisterDeviceNotificationA (hwnd=0x2010c, filter=0x33e3e4,flags=0x00000004) returns a fake device notification handle! fixme:d3d:init_driver_info Unhandled OS version 6.3, reporting Win 8. fixme:win:EnumDisplayDevicesW ((null),0,0x33d8b0,0x00000000), stub! fixme:win:EnumDisplayDevicesW ((null),0,0x33da50,0x00000000), stub! fixme:win:EnumDisplayDevicesW ((null),1,0x33da50,0x00000000), stub! fixme:winsock:WSAIoctl ignoring keepalive interval fixme:win:RegisterDeviceNotificationW (hwnd=0xa00b0, filter=0x79df56c,flags=0x00000000) returns a fake device notification handle! fixme:win:UnregisterDeviceNotification (handle=0xcafeaffe), STUB! fixme:win:RegisterDeviceNotificationW (hwnd=0xf00b0, filter=0x79df56c,flags=0x00000000) returns a fake device notification handle! fixme:file:SetFileCompletionNotificationModes 0x220 1 - stub wine: Unhandled exception 0x80000003 in thread b at address 0x100894f9 (thread 000b), starting debugger... fixme:advapi:RegisterTraceGuidsW (0x100ae390, 0x12483660, {3dada31d-19ef-4dc1-b345-037927193422}, 1, 0x1243c974, (null), (null), 0x12483678): stub fixme:advapi:RegisterTraceGuidsW register trace class {00000000-0000-0000-0000-000000000000} fixme:appbar:SHAppBarMessage unknown msg: 4 fixme:heap:RtlSetHeapInformation 0x110000 0 0x33fbec 4 stub fixme:ver:GetCurrentPackageId (0x33fba8 0x0): stub fixme:appbar:SHAppBarMessage unknown msg: 4 fixme:advapi:EventRegister {47a9201e-73b0-42ce-9821-7e134361bc6f}, 0x3f006c50, 0x3f040ce8, 0x3f040ce0 fixme:advapi:EventRegister {58a9201e-73b0-42ce-9821-7e134361bc70}, 0x3f006c50, 0x3f040d20, 0x3f040d18 fixme:advapi:EventRegister {3fa9201e-73b0-43fe-9821-7e145359bc6f}, 0x3f006c50, 0x3f040cb0, 0x3f040ca8 fixme:advapi:EventRegister {1432afee-73b0-42ce-9821-7e134361b433}, 0x3f006c50, 0x3f040d58, 0x3f040d50 fixme:advapi:EventRegister {4372afee-73b0-42ce-9821-7e134361b519}, 0x3f006c50, 0x3f040d90, 0x3f040d88 fixme:winsock:WSAIoctl ignoring keepalive interval fixme:winsock:WSAIoctl ignoring keepalive interval fixme:winsock:WSAIoctl ignoring keepalive interval err:ole:RevokeDragDrop invalid hwnd 0x500a0 0x100894f9: int $3 Modules: Module Address Debug info Name (241 modules) PE 400000- 698000 Deferred steamwebhelper PE 26e0000- 27fb000 Deferred crashhandler PE 10000000-125ff000 Export libcef PE 40001000-401bd000 Deferred libwine.1.0.dylib ELF 4079c000-407bb000 Deferred version<elf> \-PE 407a0000-407b8000 \ version ELF 407bb000-407cf000 Deferred psapi<elf> \-PE 407c0000-407ce000 \ psapi ELF 407cf000-407ea000 Deferred userenv<elf> \-PE 407d0000-407e7000 \ userenv ELF 42fd1000-43194000 Deferred user32<elf> \-PE 42fe0000-43149000 \ user32 ELF 43194000-43302000 Deferred gdi32<elf> \-PE 431a0000-43294000 \ gdi32 ELF 43302000-433a6000 Deferred advapi32<elf> \-PE 43310000-4338d000 \ advapi32 ELF 433a6000-43453000 Deferred shlwapi<elf> \-PE 433b0000-4342d000 \ shlwapi ELF 43453000-4361f000 Deferred ole32<elf> \-PE 43460000-435dc000 \ ole32 ELF 4361f000-436e0000 Deferred rpcrt4<elf> \-PE 43620000-436bd000 \ rpcrt4 ELF 436e0000-43899000 Deferred oleaut32<elf> \-PE 436f0000-43844000 \ oleaut32 ELF 43899000-438b1000 Deferred wtsapi32<elf> \-PE 438a0000-438af000 \ wtsapi32 ELF 438b1000-43a2e000 Deferred comctl32<elf> \-PE 438c0000-43a02000 \ comctl32 ELF 43a2e000-43b03000 Deferred winmm<elf> \-PE 43a30000-43af3000 \ winmm ELF 43b03000-43b38000 Deferred msacm32<elf> \-PE 43b10000-43b33000 \ msacm32 ELF 43b38000-43b7e000 Deferred secur32<elf> \-PE 43b40000-43b77000 \ secur32 ELF 43b7e000-43bc0000 Deferred netapi32<elf> \-PE 43b80000-43bb5000 \ netapi32 ELF 43bc0000-43bf3000 Deferred iphlpapi<elf> \-PE 43bd0000-43bed000 \ iphlpapi ELF 43bf3000-43c34000 Deferred ws2_32<elf> \-PE 43c00000-43c2d000 \ ws2_32 ELF 43c34000-43ca3000 Deferred oleacc<elf> \-PE 43c40000-43c8d000 \ oleacc ELF 43ca3000-43cfd000 Deferred usp10<elf> \-PE 43cb0000-43cf7000 \ usp10 PE 43cfd000-43d8a000 Deferred libfreetype.6.dylib ELF 43d8a000-43db4000 Deferred imm32<elf> \-PE 43d90000-43daf000 \ imm32 ELF 43db4000-43e7e000 Deferred winemac<elf> \-PE 43dc0000-43e55000 \ winemac PE 4558d000-4560c000 Deferred clouddocs ELF 46648000-4668b000 Deferred uxtheme<elf> \-PE 46650000-46683000 \ uxtheme ELF 467e2000-46a9d000 Deferred shell32<elf> \-PE 467f0000-46a5a000 \ shell32 ELF 46c2b000-46ccb000 Deferred setupapi<elf> \-PE 46c30000-46ca7000 \ setupapi ELF 46cce000-46d72000 Deferred wininet<elf> \-PE 46cd0000-46d5f000 \ wininet ELF 46d72000-46da0000 Deferred mpr<elf> \-PE 46d80000-46d9b000 \ mpr ELF 7b800000-7babb000 Deferred kernel32<elf> \-PE 7b810000-7ba7f000 \ kernel32 ELF 7bc00000-7bd44000 Stabs ntdll<elf> \-PE 7bc10000-7bd04000 \ ntdll ELF 7bf00000-7bf04000 Deferred <wine-loader> PE 90008000-9000c000 Deferred help PE 900ac000-900d6000 Deferred libsystem_info.dylib PE 900d6000-900da000 Deferred libextension.dylib PE 900da000-900e7000 Deferred libcommoncrypto.dylib PE 9057d000-90589000 Deferred netauth PE 9082a000-90839000 Deferred libz.1.dylib PE 90839000-90855000 Deferred openscripting PE 90855000-9085a000 Deferred libcorevmclient.dylib PE 9085a000-9086e000 Deferred libcmph.dylib PE 9086e000-908c5000 Deferred libc++.1.dylib PE 908d2000-908e7000 Deferred imagecapture PE 908e7000-909e9000 Deferred launchservices PE 909e9000-909f8000 Deferred opengl PE 909f8000-90a18000 Deferred multitouchsupport PE 90b85000-90cb4000 Deferred coreui PE 90cb4000-90d2b000 Deferred securityfoundation PE 90d2b000-90e1d000 Deferred libiconv.2.dylib PE 90e1d000-90e44000 Deferred libpng.dylib PE 90e44000-90e6b000 Deferred iconservices PE 90f11000-90f63000 Deferred opencl PE 90f63000-90f67000 Deferred libdyld.dylib PE 90f67000-91054000 Deferred libvmisc.dylib PE 91054000-91057000 Deferred libsystem_configuration.dylib PE 91057000-91069000 Deferred libbsm.0.dylib PE 910da000-910f8000 Deferred ubiquity PE 910ff000-9118d000 Deferred performanceanalysis PE 91190000-911b8000 Deferred libdispatch.dylib PE 911b8000-911d8000 Deferred libsystem_kernel.dylib PE 912c9000-912ca000 Deferred applicationservices PE 912ca000-9130b000 Deferred libglimage.dylib PE 9136c000-91483000 Deferred desktopservicespriv PE 91483000-91484000 Deferred liblaunch.dylib PE 91808000-92435000 Deferred appkit PE 92435000-924aa000 Deferred heimdal PE 924dc000-928d4000 Deferred coregraphics PE 928d4000-92932000 Deferred printcore PE 93240000-9353f000 Deferred carboncore PE 93555000-938b7000 Deferred foundation PE 938b7000-9394d000 Deferred libsystem_c.dylib PE 9394d000-9395a000 Deferred crashreportersupport PE 9395a000-93a68000 Deferred libvdsp.dylib PE 93a68000-93aa8000 Deferred navigationservices PE 93ab0000-93e0b000 Deferred libmecabra.dylib PE 93e0b000-93f10000 Deferred libjp2.dylib PE 93f15000-93fb3000 Deferred ink PE 93fb3000-94020000 Deferred datadetectorscore PE 94020000-9403e000 Deferred libcrfsuite.dylib PE 9403e000-9406e000 Deferred corevideo PE 9406e000-94099000 Deferred libxslt.1.dylib PE 941c9000-941cb000 Deferred libsystem_blocks.dylib PE 9472e000-94826000 Deferred libfontparser.dylib PE 94826000-94829000 Deferred libquarantine.dylib PE 94829000-94833000 Deferred libcopyfile.dylib PE 9489c000-9489d000 Deferred accelerate PE 9489d000-948a3000 Deferred libmacho.dylib PE 948a3000-948ad000 Deferred libsystem_notify.dylib PE 94957000-949fe000 Deferred metadata PE 94a17000-94a25000 Deferred opendirectory PE 94a25000-94a33000 Deferred speechsynthesis PE 94a33000-94a35000 Deferred libremovefile.dylib PE 94a35000-94a38000 Deferred libsystem_sandbox.dylib PE 94a65000-94a68000 Deferred securityhi PE 94a68000-94a72000 Deferred diskarbitration PE 94a72000-94be4000 Deferred libblas.dylib PE 94be4000-94c25000 Deferred symbolication PE 94c28000-94c3c000 Deferred corebluetooth PE 94c3c000-94c91000 Deferred hiservices PE 94c91000-95046000 Deferred corefoundation PE 95046000-95060000 Deferred libsystem_malloc.dylib PE 950d8000-950d9000 Deferred libopenscriptingutil.dylib PE 950d9000-950df000 Deferred print PE 950df000-9513b000 Deferred libtiff.dylib PE 95145000-9514d000 Deferred speechrecognition PE 951a1000-951df000 Deferred libsystem_network.dylib PE 951df000-951e0000 Deferred coreservices PE 951e0000-951e3000 Deferred libsystem_coreservices.dylib PE 951e3000-95208000 Deferred apple80211 PE 95208000-9520b000 Deferred loginsupport PE 953c6000-953cb000 Deferred libgif.dylib PE 953d4000-954cb000 Deferred libxml2.2.dylib PE 954cb000-954d1000 Deferred libcompiler_rt.dylib PE 954d1000-954fe000 Deferred chunkinglibrary PE 95f56000-95fce000 Deferred ats PE 960b9000-960d5000 Deferred cfopendirectory PE 960d5000-960ed000 Deferred liblinearalgebra.dylib PE 960f0000-960f1000 Deferred libunc.dylib PE 960f1000-960f2000 Deferred carbon PE 960f2000-962e2000 Deferred libobjc.a.dylib PE 962e2000-966cb000 Deferred liblapack.dylib PE 966cb000-96854000 Deferred audiotoolbox PE 96854000-968ef000 Deferred colorsync PE 9693e000-969aa000 Deferred corewifi PE 969aa000-969c2000 Deferred libsystem_asl.dylib PE 96a28000-96a4f000 Deferred libxpc.dylib PE 96bc5000-96bcf000 Deferred commonauth PE 96d7e000-96dc8000 Deferred libfontregistry.dylib PE 96dc8000-96dcf000 Deferred libsystem_trace.dylib PE 96dcf000-96de1000 Deferred libsystem_coretls.dylib PE 96de1000-97060000 Deferred security PE 97060000-970d7000 Deferred searchkit PE 970d7000-9720a000 Deferred uifoundation PE 9720a000-97401000 Deferred libicucore.a.dylib PE 983bb000-983be000 Deferred libcvmspluginsupport.dylib PE 9896d000-98991000 Deferred libjpeg.dylib PE 98991000-989d9000 Deferred applejpeg PE 989d9000-98a4d000 Deferred corewlan PE 98a4d000-98a9f000 Deferred libcups.2.dylib PE 98aa3000-98aff000 Deferred languagemodeling PE 98aff000-98c16000 Deferred coretext PE 98c16000-98c1d000 Deferred libsystem_networkextension.dylib PE 98c1d000-98de3000 Deferred quartzcore PE 98de3000-98e17000 Deferred libsystem_m.dylib PE 98e17000-98e54000 Deferred remoteviewservices PE 98e54000-98e5d000 Deferred libsystem_dnssd.dylib PE 98e5d000-98e64000 Deferred libsystem_platform.dylib PE 98e8e000-98e8f000 Deferred libkeymgr.dylib PE 98e8f000-98e93000 Deferred libpam.2.dylib PE 98e93000-98e9b000 Deferred libunwind.dylib PE 98e9b000-98ecf000 Deferred coreservicesinternal PE 98ecf000-98ed0000 Deferred audiounit PE 98ed0000-98f26000 Deferred coreaudio PE 993cf000-993fe000 Deferred libarchive.2.dylib PE 993fe000-99696000 Deferred coredata PE 99696000-996c9000 Deferred gss PE 996c9000-99749000 Deferred systemconfiguration PE 99749000-99784000 Deferred debugsymbols PE 997c1000-997cf000 Deferred libbz2.1.0.dylib PE 997cf000-99ac2000 Deferred coreimage PE 99ac2000-99acb000 Stabs libsystem_pthread.dylib PE 99acb000-99ad4000 Deferred libcgcms.a.dylib PE 99ad4000-99aee000 Deferred kerberos PE 99aee000-99cfd000 Deferred cfnetwork PE 99d89000-99d9d000 Deferred sharing PE 99eb1000-9a2e5000 Deferred facecore PE 9a2e5000-9a2e7000 Deferred libdiagnosticmessagesclient.dyli PE 9a2e7000-9a2f0000 Deferred fsevents PE 9a2f2000-9a312000 Deferred libresolv.9.dylib PE 9a312000-9a317000 Deferred tcc PE 9a317000-9a381000 Deferred libcorecrypto.dylib PE 9a381000-9a38b000 Deferred libgfxshared.dylib PE 9a38b000-9a38c000 Deferred veclib PE 9a38c000-9a3b3000 Deferred libc++abi.dylib PE 9a40d000-9a40f000 Deferred libsystem.b.dylib PE 9a40f000-9a42f000 Deferred generationalstorage PE 9a42f000-9a434000 Deferred libheimdal-asn1.dylib PE 9a434000-9a870000 Deferred vimage PE 9a87d000-9a88e000 Deferred langanalysis PE 9a88e000-9a92f000 Deferred qd PE 9a92f000-9aabf000 Deferred libsqlite3.dylib PE 9aabf000-9ac04000 Deferred imageio PE 9ac04000-9ac0d000 Deferred netfs PE 9ac30000-9ac40000 Deferred libxar.1.dylib PE 9ac40000-9ac4e000 Deferred protocolbuffer PE 9ac4e000-9ac53000 Deferred commonpanels PE 9ac53000-9acb8000 Deferred ae PE 9acb8000-9ad0e000 Deferred htmlrendering PE 9ad49000-9ad56000 Deferred libkxld.dylib PE 9ad56000-9ad5b000 Deferred iosurface PE 9ae3f000-9aed2000 Deferred coresymbolication PE 9aed2000-9af5a000 Deferred osservices PE 9af5a000-9afd8000 Deferred iokit PE 9afd8000-9b088000 Deferred iobluetooth PE 9bc92000-9bca3000 Deferred libgl.dylib PE 9bcf3000-9bcf5000 Deferred liblangid.dylib PE 9bcf5000-9bdc1000 Deferred backup PE 9bdc1000-9c19b000 Deferred hitoolbox PE 9c19b000-9c19e000 Deferred libradiance.dylib PE 9c2ad000-9c2dd000 Deferred dictionaryservices PE 9c2dd000-9c2e1000 Deferred servicemanagement PE 9c38f000-9c39a000 Deferred carbonsound PE 9c39a000-9c39f000 Deferred libcache.dylib PE 9c39f000-9c3e0000 Deferred libauto.dylib PE 9c3e0000-9c3e3000 Deferred libsystem_secinit.dylib PE 9c3f6000-9c43a000 Deferred libglu.dylib PE 9c446000-9c461000 Deferred liblzma.5.dylib PE 9c461000-9c470000 Deferred speechrecognitioncore Threads: process tid prio (all id:s are in hex) 0000000e services.exe 0000001e 0 0000001d 0 00000014 0 00000010 0 0000000f 0 00000012 winedevice.exe 0000001c 0 00000019 0 00000018 0 00000013 0 0000001a plugplay.exe 00000020 0 0000001f 0 0000001b 0 00000021 explorer.exe 00000025 0 00000024 0 00000023 0 00000022 0 0000005e steamerrorreporter.exe 0000005f 0 00000031 steamerrorreporter.exe 0000002f 0 00000053 Steam.exe 00000065 0 00000064 0 00000051 0 00000059 0 00000045 0 0000003f 0 0000003e 0 0000003b 0 00000039 0 00000038 0 00000036 0 00000035 0 0000002a 0 00000050 0 0000005b 0 00000056 0 00000055 0 00000052 0 00000066 0 0000002c 0 00000009 0 0000005c 0 00000054 0 00000062 0 00000060 0 00000058 0 00000061 (D) C:\Program Files\Steam\bin\steamwebhelper.exe 00000044 0 00000037 0 0000004d 0 0000004c 0 0000004b 0 0000004a 0 00000048 0 00000017 0 0000000b 0 <== 00000016 0 0000000d 0 0000000c 0 00000034 0 00000032 0 00000049 0 0000002e 0 0000002d 0 0000002b 0 00000028 0 00000027 0 00000026 0 00000033 0 00000046 steamerrorreporter.exe 0000005d 0 00000047 0 System information: Wine build: wine-1.7.49 Platform: i386 Host system: Darwin Host version: 14.3.0 fixme:heap:RtlSetHeapInformation 0x110000 0 0x33fbec 4 stub fixme:process:SetProcessDEPPolicy (3): stub fixme:heap:RtlSetHeapInformation 0x0 1 0x0 0 stub fixme:thread:GetThreadPreferredUILanguages 56, 0x33f7b4, 0x0 0x33f7b8 fixme:winsock:WSALookupServiceBeginW (0x33f6a4 0x00000ff0 0x33f6e0) Stub! [0812/213544:ERROR:network_change_notifier_win.cc(173)] WSALookupServiceBegin failed with: 8 fixme:iphlpapi:NotifyAddrChange (Handle 0x33f7ec, overlapped 0x1865d0): stub fixme:win:RegisterDeviceNotificationW (hwnd=0x700b6, filter=0x33f7f8,flags=0x00000000) returns a fake device notification handle! fixme:win:RegisterDeviceNotificationW (hwnd=0x700b6, filter=0x33f7f8,flags=0x00000000) returns a fake device notification handle! fixme:ver:GetCurrentPackageId (0x33f3e4 0x0): stub fixme:win:EnumDisplayDevicesW ((null),0,0x33f130,0x00000000), stub! fixme:ver:GetCurrentPackageId (0x33fba8 0x0): stub fixme:winsock:WSAIoctl ignoring keepalive interval fixme:winsock:WSAIoctl ignoring keepalive interval fixme:system:SystemParametersInfoW Unknown action: 116 err:wininet:open_http_connection create_netconn failed: 12029 fixme:advapi:EventRegister {47a9201e-73b0-42ce-9821-7e134361bc6f}, 0x3f006c50, 0x3f040ce8, 0x3f040ce0 fixme:advapi:EventRegister {58a9201e-73b0-42ce-9821-7e134361bc70}, 0x3f006c50, 0x3f040d20, 0x3f040d18 fixme:advapi:EventRegister {3fa9201e-73b0-43fe-9821-7e145359bc6f}, 0x3f006c50, 0x3f040cb0, 0x3f040ca8 fixme:advapi:EventRegister {1432afee-73b0-42ce-9821-7e134361b433}, 0x3f006c50, 0x3f040d58, 0x3f040d50 fixme:advapi:EventRegister {4372afee-73b0-42ce-9821-7e134361b519}, 0x3f006c50, 0x3f040d90, 0x3f040d88 err:wininet:open_http_connection create_netconn failed: 12029 fixme:advapi:EventUnregister deadbeef: stub fixme:advapi:EventUnregister deadbeef: stub fixme:advapi:EventUnregister deadbeef: stub fixme:advapi:EventUnregister deadbeef: stub fixme:advapi:EventUnregister deadbeef: stub fixme:win:UnregisterDeviceNotification (handle=0xcafeaffe), STUB! fixme:win:UnregisterDeviceNotification (handle=0xcafeaffe), STUB! fixme:iphlpapi:CancelIPChangeNotify (overlapped 0x1865d0): stub Forced create of Win32Event but it already existed
Any help you could give would be greatly appreciated! Regards Smax Replies |
||
| deri82 | Sunday 5 July 2015 at 8:27 | ||
deri82
|
WarningThis update has not been approved yet by the team. Differences@@ -27,7 +27,7 @@ source "$PLAYONLINUX/lib/sources" TITLE="Steam" -WINEVERSION="1.7.33" +WINEVERSION="1.7.46" GAME_VMS="256" #starting the script New source code#!/bin/bash
# Date : (2010-02-10 16:30)
# Last revision : (2012-07-21 21:00)
# Wine version used : 1.3.9, 1.3.11, 1.3.15, 1.3.18, 1.3.19, 1.3.23, 1.3.24, 1.2.3, 1.3.28, 1.3.37, 1.4.1
# Distribution used to test : Debian Testing
# Author : Tinou
# Licence : Retail
# Only For : http://www.playonlinux.com
#
# Ce script est partculier, il permet d'installer Steam sur autant de préfixe qu'on
# souhaite.
#
# Il faut donc être vigilent, et mettre le moins de paquets possible, pour que
# l'utilisateur puisse les réinstaller à sa guise. Il est facile d'installer vcrun2005,
# par contre il est difficile de le désinstaller.
#
# On installe donc seulement gecko qui est indispensable, et on évite le reste
#
##############################################################
# CHANGELOG
# [SuperPlumus] (2013-06-09 15-47)
# gettext
[ "$PLAYONLINUX" = "" ] && exit 0
source "$PLAYONLINUX/lib/sources"
TITLE="Steam"
WINEVERSION="1.7.46"
GAME_VMS="256"
#starting the script
POL_SetupWindow_Init
POL_SetupWindow_presentation "$TITLE" "Valve" "http://www.valvesoftware.com/" "Tinou" "$PREFIX"
# Si le prefix existe, on propose d'en faire un autre
if [ -e "$POL_USER_ROOT/wineprefix/Steam" ]; then
POL_SetupWindow_textbox "$(eval_gettext 'Please choose a virtual drive name')" "$TITLE"
PREFIX="$APP_ANSWER"
else
PREFIX="Steam"
fi
# Setting prefix path
POL_Wine_SelectPrefix "$PREFIX"
# Downloading wine if necessary and creating prefix
POL_System_SetArch "x86" # forcing x86 to avoid any possible x64 related bugs
POL_Wine_PrefixCreate "$WINEVERSION"
# Installing mandatory dependencies
POL_Wine_InstallFonts
POL_Call POL_Install_corefonts
POL_Function_FontsSmoothRGB
POL_Wine_OverrideDLL "" "dwrite"
#downloading latest Steam
cd "$POL_USER_ROOT/wineprefix/$PREFIX/drive_c/"
#POL_Download "http://cdn.steampowered.com/download/$STEAM_EXEC" ""
#Installing Steam
cd "$POL_USER_ROOT/wineprefix/$PREFIX/drive_c/"
POL_Download "http://media.steampowered.com/client/installer/SteamSetup.exe"
POL_Wine_WaitBefore "$TITLE"
POL_Wine "SteamSetup.exe"
# Asking about memory size of graphic card
POL_SetupWindow_VMS "$GAME_VMS"
## Fix for Steam
# Note : semble ne plus être nécéssaire désormais?
POL_Wine_OverrideDLL "" "gameoverlayrenderer"
## End Fix
# Making shortcut
POL_Shortcut "Steam.exe" "$TITLE"
#POL_SetupWindow_message "$(eval_gettext 'If you encounter problems with some games, try to disable Steam Overlay')" "$TITLE"
POL_SetupWindow_message "$(eval_gettext 'If you want to install $TITLE in another virtual drive\nRun this installer again')" "$TITLE"
POL_SetupWindow_Close
exit 0 Replies |
||
| Ayaskull | Tuesday 24 March 2015 at 17:33 | ||
Ayaskull
|
MessageHi. The Steam client is running good on my laptop with LinuxMint 17.1. At first I thought that the games would be also running good but I'm having different issues for every game I try to play (basically I can't play anything I've tried). should I try to find an individual solution for each game? I'm a noob so sorry for this question. Replies |
||
| Minty64 | Tuesday 10 March 2015 at 17:59 | ||
Minty64
|
MessageHi, I'm having an issue with installing new prefix's of steam on POL [hope this is in the right spot] an old (before the bug) install of steam does this
while a new install of steam does this
here is the debug
[03/10/15 09:37:19] - Running wine-1.7.33 Steam.exe -no-dwrite (Working directory : /home/jute/.PlayOnLinux/wineprefix/Steam/drive_c/Program Files/Steam)
fixme:ver:GetCurrentPackageId (0x32e490 (nil)): stub
fixme:advapi:EventRegister {47a9201e-73b0-42ce-9821-7e134361bc6f}, 0x3f006c50, 0x3f040ce8, 0x3f040ce0
fixme:advapi:EventRegister {58a9201e-73b0-42ce-9821-7e134361bc70}, 0x3f006c50, 0x3f040d20, 0x3f040d18
fixme:advapi:EventRegister {3fa9201e-73b0-43fe-9821-7e145359bc6f}, 0x3f006c50, 0x3f040cb0, 0x3f040ca8
fixme:advapi:EventRegister {1432afee-73b0-42ce-9821-7e134361b433}, 0x3f006c50, 0x3f040d58, 0x3f040d50
fixme:advapi:EventRegister {4372afee-73b0-42ce-9821-7e134361b519}, 0x3f006c50, 0x3f040d90, 0x3f040d88
p11-kit: couldn't load module: /usr/lib/i386-linux-gnu/pkcs11/p11-kit-trust.so: /usr/lib/i386-linux-gnu/pkcs11/p11-kit-trust.so: cannot open shared object file: No such file or directory
fixme:advapi:EventRegister {47a9201e-73b0-42ce-9821-7e134361bc6f}, 0x3f006c50, 0x3f040ce8, 0x3f040ce0
fixme:advapi:EventRegister {58a9201e-73b0-42ce-9821-7e134361bc70}, 0x3f006c50, 0x3f040d20, 0x3f040d18
fixme:advapi:EventRegister {3fa9201e-73b0-43fe-9821-7e145359bc6f}, 0x3f006c50, 0x3f040cb0, 0x3f040ca8
fixme:advapi:EventRegister {1432afee-73b0-42ce-9821-7e134361b433}, 0x3f006c50, 0x3f040d58, 0x3f040d50
fixme:advapi:EventRegister {4372afee-73b0-42ce-9821-7e134361b519}, 0x3f006c50, 0x3f040d90, 0x3f040d88
fixme:process:SetProcessShutdownParameters (00000100, 00000000): partial stub.
fixme:imm:ImmGetOpenStatus (0x21c770): semi-stub
fixme:ver:GetCurrentPackageId (0x32e360 (nil)): stub
fixme:ole:RemUnknown_QueryInterface No interface for iid {00000019-0000-0000-c000-000000000046}
err:winediag:SECUR32_initNTLMSP ntlm_auth was not found or is outdated. Make sure that ntlm_auth >= 3.0.25 is in your path. Usually, you can find it in the winbind package of your distribution.
p11-kit: couldn't load module: /usr/lib/i386-linux-gnu/pkcs11/p11-kit-trust.so: /usr/lib/i386-linux-gnu/pkcs11/p11-kit-trust.so: cannot open shared object file: No such file or directory
err:winediag:SECUR32_initNTLMSP ntlm_auth was not found or is outdated. Make sure that ntlm_auth >= 3.0.25 is in your path. Usually, you can find it in the winbind package of your distribution.
fixme:ver:GetCurrentPackageId (0x30e5b0 (nil)): stub
fixme:wbemprox:wbem_locator_ConnectServer unsupported flags
fixme:wbemprox:client_security_SetBlanket 0x7cdfcd6c, 0x1e48508, 10, 0, (null), 3, 3, (nil), 0x00000000
fixme:wbemprox:client_security_Release 0x7cdfcd6c
fixme:hnetcfg:fw_apps_get__NewEnum 0x1e54f30, 0x5d0e4fc
fixme:wbemprox:wbem_locator_ConnectServer unsupported flags
fixme:wbemprox:client_security_SetBlanket 0x7cdfcd6c, 0x1e54f48, 10, 0, (null), 3, 3, (nil), 0x00000000
fixme:wbemprox:client_security_Release 0x7cdfcd6c
fixme:hnetcfg:fw_app_put_ProcessImageFileName 0x1e49800, L"C:\\Program Files\\Steam\\steam.exe"
fixme:hnetcfg:fw_app_put_Name 0x1e49800, L"Steam"
fixme:hnetcfg:fw_app_put_Enabled 0x1e49800, -1
fixme:hnetcfg:fw_apps_Add 0x1e46cf8, 0x1e49800
err:ole:CoGetClassObject class {e2b3c97f-6ae1-41ac-817a-f6f92166d7dd} not registered
err:ole:CoGetClassObject no class object {e2b3c97f-6ae1-41ac-817a-f6f92166d7dd} could be created for context 0x1
fixme:mountmgr:harddisk_ioctl The DISK_PARTITION_INFO and DISK_DETECTION_INFO structures will not be filled
fixme:wbemprox:enum_class_object_Next timeout not supported
fixme:mountmgr:harddisk_ioctl The DISK_PARTITION_INFO and DISK_DETECTION_INFO structures will not be filled
fixme:wbemprox:enum_class_object_Next timeout not supported
fixme:wbemprox:enum_class_object_Next timeout not supported
fixme:wbemprox:enum_class_object_Next timeout not supported
fixme:wbemprox:enum_class_object_Next timeout not supported
fixme:process:SetProcessDEPPolicy (3): stub
fixme:heap:HeapSetInformation (nil) 1 (nil) 0
fixme:imm:ImmDisableTextFrameService Stub
fixme:thread:GetThreadPreferredUILanguages 56, 0x33f784, (nil) 0x33f788
fixme:winsock:WSALookupServiceBeginW (0x33f670 0x00000ff0 0x33f6ac) Stub!
[0310/093720:ERROR:network_change_notifier_win.cc(174)] WSALookupServiceBegin failed with: 8
fixme:iphlpapi:NotifyAddrChange (Handle 0x33f7b8, overlapped 0xb15d68): stub
fixme:win:RegisterDeviceNotificationW (hwnd=0x100a6, filter=0x33f7c4,flags=0x00000000) returns a fake device notification handle!
fixme:win:RegisterDeviceNotificationW (hwnd=0x100a6, filter=0x33f7c4,flags=0x00000000) returns a fake device notification handle!
[0310/093720:ERROR:gpu_info_collector_win.cc(103)] Can't retrieve a valid WinSAT assessment.
fixme:win:EnumDisplayDevicesW ((null),0,0x33f094,0x00000000), stub!
fixme:ver:GetCurrentPackageId (0x270dff4 (nil)): stub
fixme:iphlpapi:NotifyAddrChange (Handle 0x2fa014c, overlapped 0x2fa0150): stub
fixme:ntdll:NtQuerySystemInformation info_class SYSTEM_HANDLE_INFORMATION
fixme:win:RegisterDeviceNotificationA (hwnd=0x100ac, filter=0x67ce4fc,flags=0x00000004) returns a fake device notification handle!
fixme:ver:GetCurrentPackageId (0x33fbac (nil)): stub
fixme:imm:ImmReleaseContext (0x100b6, 0x1e878c8): stub
fixme:advapi:RegisterTraceGuidsW (0x100a3de0, 0x12041df0, {3dada31d-19ef-4dc1-b345-037927193422}, 1, 0x11fbb548, (null), (null), 0x12041e08): stub
p11-kit: couldn't load module: /usr/lib/i386-linux-gnu/pkcs11/p11-kit-trust.so: /usr/lib/i386-linux-gnu/pkcs11/p11-kit-trust.so: cannot open shared object file: No such file or directory
err:winediag:SECUR32_initNTLMSP ntlm_auth was not found or is outdated. Make sure that ntlm_auth >= 3.0.25 is in your path. Usually, you can find it in the winbind package of your distribution.
p11-kit: couldn't load module: /usr/lib/i386-linux-gnu/pkcs11/p11-kit-trust.so: /usr/lib/i386-linux-gnu/pkcs11/p11-kit-trust.so: cannot open shared object file: No such file or directory
err:winediag:SECUR32_initNTLMSP ntlm_auth was not found or is outdated. Make sure that ntlm_auth >= 3.0.25 is in your path. Usually, you can find it in the winbind package of your distribution.
fixme:process:SetProcessDEPPolicy (3): stub
fixme:heap:HeapSetInformation (nil) 1 (nil) 0
fixme:advapi:RegisterTraceGuidsW (0x100a3de0, 0x12041df0, {3dada31d-19ef-4dc1-b345-037927193422}, 1, 0x11fbb548, (null), (null), 0x12041e08): stub
fixme:gdi:GdiInitializeLanguagePack stub
[0310/093721:ERROR:renderer_main.cc(227)] Running without renderer sandbox
fixme:module:load_library unsupported flag(s) used (flags: 0x00000800)
fixme:ver:GetCurrentPackageId (0x1fbe9f8 (nil)): stub
fixme:process:SetProcessDEPPolicy (3): stub
fixme:heap:HeapSetInformation (nil) 1 (nil) 0
fixme:advapi:RegisterTraceGuidsW (0x100a3de0, 0x12041df0, {3dada31d-19ef-4dc1-b345-037927193422}, 1, 0x11fbb548, (null), (null), 0x12041e08): stub
fixme:gdi:GdiInitializeLanguagePack stub
[0310/093721:ERROR:renderer_main.cc(227)] Running without renderer sandbox
fixme:module:load_library unsupported flag(s) used (flags: 0x00000800)
fixme:ver:GetCurrentPackageId (0x1fbe9f8 (nil)): stub
err:ole:RevokeDragDrop invalid hwnd 0x100b4
err:ole:RevokeDragDrop invalid hwnd 0x100b6
err:ole:RevokeDragDrop invalid hwnd 0x100b8
err:ole:RevokeDragDrop invalid hwnd 0x100ba
err:ole:RevokeDragDrop invalid hwnd 0x100bc
err:ole:RevokeDragDrop invalid hwnd 0x100be
err:ole:RevokeDragDrop invalid hwnd 0x100c0
err:ole:RevokeDragDrop invalid hwnd 0x100c2
fixme:win:UnregisterDeviceNotification (handle=0xcafecafe), STUB!
fixme:iphlpapi:CancelIPChangeNotify (overlapped 0x2fa0150): stub
fixme:win:UnregisterDeviceNotification (handle=0xcafeaffe), STUB!
fixme:win:UnregisterDeviceNotification (handle=0xcafeaffe), STUB!
fixme:iphlpapi:CancelIPChangeNotify (overlapped 0xb15d68): stub
fixme:advapi:UnregisterTraceGuids 0: stub
fixme:advapi:EventUnregister deadbeef: stub
fixme:advapi:EventUnregister deadbeef: stub
fixme:advapi:EventUnregister deadbeef: stub
fixme:advapi:EventUnregister deadbeef: stub
fixme:advapi:EventUnregister deadbeef: stub
[2015-03-10 09:37:19] Startup - updater built Feb 18 2015 15:33:21
[2015-03-10 09:37:19] Verifying installation...
[2015-03-10 09:37:20] Verification complete
[2015-03-10 09:37:28] Shutdown
fixme:advapi:EventUnregister deadbeef: stub
fixme:advapi:EventUnregister deadbeef: stub
fixme:advapi:EventUnregister deadbeef: stub
fixme:advapi:EventUnregister deadbeef: stub
fixme:advapi:EventUnregister deadbeef: stub
it happens after steam updates for the first time, this next debug is after it updates and asks if you're a new user or have an existing account
[03/10/15 10:56:15] - Running wine-1.7.33 Steam.exe -no-dwrite (Working directory : /home/jute/.PlayOnLinux/wineprefix/Steam/drive_c/Program Files/Steam)
fixme:ver:GetCurrentPackageId (0x32e490 (nil)): stub
fixme:advapi:EventRegister {47a9201e-73b0-42ce-9821-7e134361bc6f}, 0x3f006c50, 0x3f040ce8, 0x3f040ce0
fixme:advapi:EventRegister {58a9201e-73b0-42ce-9821-7e134361bc70}, 0x3f006c50, 0x3f040d20, 0x3f040d18
fixme:advapi:EventRegister {3fa9201e-73b0-43fe-9821-7e145359bc6f}, 0x3f006c50, 0x3f040cb0, 0x3f040ca8
fixme:advapi:EventRegister {1432afee-73b0-42ce-9821-7e134361b433}, 0x3f006c50, 0x3f040d58, 0x3f040d50
fixme:advapi:EventRegister {4372afee-73b0-42ce-9821-7e134361b519}, 0x3f006c50, 0x3f040d90, 0x3f040d88
p11-kit: couldn't load module: /usr/lib/i386-linux-gnu/pkcs11/p11-kit-trust.so: /usr/lib/i386-linux-gnu/pkcs11/p11-kit-trust.so: cannot open shared object file: No such file or directory
fixme:advapi:EventRegister {47a9201e-73b0-42ce-9821-7e134361bc6f}, 0x3f006c50, 0x3f040ce8, 0x3f040ce0
fixme:advapi:EventRegister {58a9201e-73b0-42ce-9821-7e134361bc70}, 0x3f006c50, 0x3f040d20, 0x3f040d18
fixme:advapi:EventRegister {3fa9201e-73b0-43fe-9821-7e145359bc6f}, 0x3f006c50, 0x3f040cb0, 0x3f040ca8
fixme:advapi:EventRegister {1432afee-73b0-42ce-9821-7e134361b433}, 0x3f006c50, 0x3f040d58, 0x3f040d50
fixme:advapi:EventRegister {4372afee-73b0-42ce-9821-7e134361b519}, 0x3f006c50, 0x3f040d90, 0x3f040d88
fixme:process:SetProcessShutdownParameters (00000100, 00000000): partial stub.
fixme:imm:ImmGetOpenStatus (0x21c6f0): semi-stub
fixme:ver:GetCurrentPackageId (0x32e360 (nil)): stub
fixme:ole:RemUnknown_QueryInterface No interface for iid {00000019-0000-0000-c000-000000000046}
err:winediag:SECUR32_initNTLMSP ntlm_auth was not found or is outdated. Make sure that ntlm_auth >= 3.0.25 is in your path. Usually, you can find it in the winbind package of your distribution.
fixme:ver:GetCurrentPackageId (0x30e5b0 (nil)): stub
fixme:wbemprox:wbem_locator_ConnectServer unsupported flags
fixme:wbemprox:client_security_SetBlanket 0x7cbfcd6c, 0x1daed18, 10, 0, (null), 3, 3, (nil), 0x00000000
fixme:wbemprox:client_security_Release 0x7cbfcd6c
fixme:wbemprox:wbem_locator_ConnectServer unsupported flags
fixme:hnetcfg:fw_apps_get__NewEnum 0x1e48178, 0x5d0e4fc
fixme:wbemprox:client_security_SetBlanket 0x7cbfcd6c, 0x1daed18, 10, 0, (null), 3, 3, (nil), 0x00000000
fixme:wbemprox:client_security_Release 0x7cbfcd6c
fixme:hnetcfg:fw_app_put_ProcessImageFileName 0x1e75450, L"C:\\Program Files\\Steam\\steam.exe"
fixme:hnetcfg:fw_app_put_Name 0x1e75450, L"Steam"
fixme:hnetcfg:fw_app_put_Enabled 0x1e75450, -1
fixme:hnetcfg:fw_apps_Add 0x1e33010, 0x1e75450
err:ole:CoGetClassObject class {e2b3c97f-6ae1-41ac-817a-f6f92166d7dd} not registered
err:ole:CoGetClassObject no class object {e2b3c97f-6ae1-41ac-817a-f6f92166d7dd} could be created for context 0x1
p11-kit: couldn't load module: /usr/lib/i386-linux-gnu/pkcs11/p11-kit-trust.so: /usr/lib/i386-linux-gnu/pkcs11/p11-kit-trust.so: cannot open shared object file: No such file or directory
err:winediag:SECUR32_initNTLMSP ntlm_auth was not found or is outdated. Make sure that ntlm_auth >= 3.0.25 is in your path. Usually, you can find it in the winbind package of your distribution.
fixme:mountmgr:harddisk_ioctl The DISK_PARTITION_INFO and DISK_DETECTION_INFO structures will not be filled
fixme:wbemprox:enum_class_object_Next timeout not supported
fixme:mountmgr:harddisk_ioctl The DISK_PARTITION_INFO and DISK_DETECTION_INFO structures will not be filled
fixme:wbemprox:enum_class_object_Next timeout not supported
fixme:wbemprox:enum_class_object_Next timeout not supported
fixme:wbemprox:enum_class_object_Next timeout not supported
fixme:wbemprox:enum_class_object_Next timeout not supported
fixme:process:SetProcessDEPPolicy (3): stub
fixme:heap:HeapSetInformation (nil) 1 (nil) 0
fixme:imm:ImmDisableTextFrameService Stub
fixme:thread:GetThreadPreferredUILanguages 56, 0x33f784, (nil) 0x33f788
fixme:winsock:WSALookupServiceBeginW (0x33f670 0x00000ff0 0x33f6ac) Stub!
[0310/105616:ERROR:network_change_notifier_win.cc(174)] WSALookupServiceBegin failed with: 8
fixme:iphlpapi:NotifyAddrChange (Handle 0x33f7b8, overlapped 0xb15d68): stub
fixme:win:RegisterDeviceNotificationW (hwnd=0x100a6, filter=0x33f7c4,flags=0x00000000) returns a fake device notification handle!
fixme:win:RegisterDeviceNotificationW (hwnd=0x100a6, filter=0x33f7c4,flags=0x00000000) returns a fake device notification handle!
[0310/105616:ERROR:gpu_info_collector_win.cc(103)] Can't retrieve a valid WinSAT assessment.
fixme:win:EnumDisplayDevicesW ((null),0,0x33f094,0x00000000), stub!
fixme:ver:GetCurrentPackageId (0x270dff4 (nil)): stub
fixme:iphlpapi:NotifyAddrChange (Handle 0x2fa014c, overlapped 0x2fa0150): stub
fixme:ntdll:NtQuerySystemInformation info_class SYSTEM_HANDLE_INFORMATION
fixme:win:RegisterDeviceNotificationA (hwnd=0x100ac, filter=0x67ce4fc,flags=0x00000004) returns a fake device notification handle!
fixme:ver:GetCurrentPackageId (0x33fbac (nil)): stub
fixme:imm:ImmReleaseContext (0x100b6, 0x1ed3a38): stub
fixme:advapi:RegisterTraceGuidsW (0x100a3de0, 0x12041df0, {3dada31d-19ef-4dc1-b345-037927193422}, 1, 0x11fbb548, (null), (null), 0x12041e08): stub
p11-kit: couldn't load module: /usr/lib/i386-linux-gnu/pkcs11/p11-kit-trust.so: /usr/lib/i386-linux-gnu/pkcs11/p11-kit-trust.so: cannot open shared object file: No such file or directory
err:winediag:SECUR32_initNTLMSP ntlm_auth was not found or is outdated. Make sure that ntlm_auth >= 3.0.25 is in your path. Usually, you can find it in the winbind package of your distribution.
p11-kit: couldn't load module: /usr/lib/i386-linux-gnu/pkcs11/p11-kit-trust.so: /usr/lib/i386-linux-gnu/pkcs11/p11-kit-trust.so: cannot open shared object file: No such file or directory
err:winediag:SECUR32_initNTLMSP ntlm_auth was not found or is outdated. Make sure that ntlm_auth >= 3.0.25 is in your path. Usually, you can find it in the winbind package of your distribution.
fixme:process:SetProcessDEPPolicy (3): stub
fixme:heap:HeapSetInformation (nil) 1 (nil) 0
fixme:advapi:RegisterTraceGuidsW (0x100a3de0, 0x12041df0, {3dada31d-19ef-4dc1-b345-037927193422}, 1, 0x11fbb548, (null), (null), 0x12041e08): stub
fixme:gdi:GdiInitializeLanguagePack stub
[0310/105617:ERROR:renderer_main.cc(227)] Running without renderer sandbox
fixme:module:load_library unsupported flag(s) used (flags: 0x00000800)
fixme:ver:GetCurrentPackageId (0x1fbe9f8 (nil)): stub
fixme:process:SetProcessDEPPolicy (3): stub
fixme:heap:HeapSetInformation (nil) 1 (nil) 0
fixme:advapi:RegisterTraceGuidsW (0x100a3de0, 0x12041df0, {3dada31d-19ef-4dc1-b345-037927193422}, 1, 0x11fbb548, (null), (null), 0x12041e08): stub
fixme:gdi:GdiInitializeLanguagePack stub
[0310/105617:ERROR:renderer_main.cc(227)] Running without renderer sandbox
fixme:module:load_library unsupported flag(s) used (flags: 0x00000800)
fixme:ver:GetCurrentPackageId (0x1fbe9f8 (nil)): stub
err:ole:RevokeDragDrop invalid hwnd 0x100b4
err:ole:RevokeDragDrop invalid hwnd 0x100b6
err:ole:RevokeDragDrop invalid hwnd 0x100b8
err:ole:RevokeDragDrop invalid hwnd 0x100ba
err:ole:RevokeDragDrop invalid hwnd 0x100bc
err:ole:RevokeDragDrop invalid hwnd 0x100be
err:ole:RevokeDragDrop invalid hwnd 0x100c0
err:ole:RevokeDragDrop invalid hwnd 0x100c2
fixme:win:UnregisterDeviceNotification (handle=0xcafecafe), STUB!
fixme:iphlpapi:CancelIPChangeNotify (overlapped 0x2fa0150): stub
[0310/105626:ERROR:ipc_channel_win.cc(371)] pipe error: 676
[0310/105626:ERROR:ipc_channel_win.cc(405)] pipe error: 233
fixme:advapi:UnregisterTraceGuids 0: stub
fixme:advapi:EventUnregister deadbeef: stub
fixme:advapi:EventUnregister deadbeef: stub
fixme:advapi:EventUnregister deadbeef: stub
fixme:advapi:EventUnregister deadbeef: stub
fixme:advapi:EventUnregister deadbeef: stub
fixme:win:UnregisterDeviceNotification (handle=0xcafeaffe), STUB!
fixme:win:UnregisterDeviceNotification (handle=0xcafeaffe), STUB!
fixme:iphlpapi:CancelIPChangeNotify (overlapped 0xb15d68): stub
fixme:advapi:UnregisterTraceGuids 0: stub
fixme:advapi:EventUnregister deadbeef: stub
fixme:advapi:EventUnregister deadbeef: stub
fixme:advapi:EventUnregister deadbeef: stub
fixme:advapi:EventUnregister deadbeef: stub
fixme:advapi:EventUnregister deadbeef: stub
[2015-03-10 10:56:16] Startup - updater built Feb 18 2015 15:33:21
[2015-03-10 10:56:16] Verifying installation...
[2015-03-10 10:56:16] Verification complete
[2015-03-10 10:56:27] Shutdown
Replies |
||
| RobLoach | Wednesday 21 January 2015 at 17:24 | ||
|
RobLoach
|
MessageQuestion... Should this be updated to use: POL_Call POL_Install_steam And then consolidate the additional changes into POL_Install_steam? Replies |
||
| kaboom9530 | Thursday 15 January 2015 at 19:29 | ||
kaboom9530
|
MessageGreeting fellow users. I installed Steam on POL, but I am never able to log in. I was able to do it before in the past, but now I'm stuck on the login box loading to log me in. I have left my computer on for over ten minutes and still no connection to Steam. I have tried uninstalling and reinstalling, still no luck.I ran the program in debug, I see this: filter=0xd1ce4ec,flags=0x00000004) returns a fake device notification handle! Does anyone have any suggestions for fixing this problem? Thank you. Replies |
||
| zenforic | Tuesday 6 January 2015 at 6:08 | ||
zenforic
|
WarningThis update has not been approved yet by the team. MessageHi, this program runs great, although, to fix the community page issue automatically and such, I recommend this slight modification. If you don't want to use it it's fine just a suggestion. The changes are in the "Installing mandatory dependencies" section, and reasons are commented in there. Differences@@ -22,6 +22,8 @@ # CHANGELOG # [SuperPlumus] (2013-06-09 15-47) # gettext +# [zenforic] (2015-01-05) +# added fix for community/game search section. [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" @@ -53,6 +55,9 @@ POL_Wine_InstallFonts POL_Call POL_Install_corefonts POL_Function_FontsSmoothRGB +POL_Call POL_Install_ie8 #fixes the glitchy browsing/non-working search bar in community +POL_Call POL_Install_flashplayer #fixes other glitches +POL_Call POL_Install_AdobeAir #slihtly speeds up dropdowns (e.g. for birthdate selections) POL_Wine_OverrideDLL "" "dwrite" #downloading latest Steam New source code#!/bin/bash
# Date : (2010-02-10 16:30)
# Last revision : (2012-07-21 21:00)
# Wine version used : 1.3.9, 1.3.11, 1.3.15, 1.3.18, 1.3.19, 1.3.23, 1.3.24, 1.2.3, 1.3.28, 1.3.37, 1.4.1
# Distribution used to test : Debian Testing
# Author : Tinou
# Licence : Retail
# Only For : http://www.playonlinux.com
#
# Ce script est partculier, il permet d'installer Steam sur autant de préfixe qu'on
# souhaite.
#
# Il faut donc être vigilent, et mettre le moins de paquets possible, pour que
# l'utilisateur puisse les réinstaller à sa guise. Il est facile d'installer vcrun2005,
# par contre il est difficile de le désinstaller.
#
# On installe donc seulement gecko qui est indispensable, et on évite le reste
#
##############################################################
# CHANGELOG
# [SuperPlumus] (2013-06-09 15-47)
# gettext
# [zenforic] (2015-01-05)
# added fix for community/game search section.
[ "$PLAYONLINUX" = "" ] && exit 0
source "$PLAYONLINUX/lib/sources"
TITLE="Steam"
WINEVERSION="1.7.33"
GAME_VMS="256"
#starting the script
POL_SetupWindow_Init
POL_SetupWindow_presentation "$TITLE" "Valve" "http://www.valvesoftware.com/" "Tinou" "$PREFIX"
# Si le prefix existe, on propose d'en faire un autre
if [ -e "$POL_USER_ROOT/wineprefix/Steam" ]; then
POL_SetupWindow_textbox "$(eval_gettext 'Please choose a virtual drive name')" "$TITLE"
PREFIX="$APP_ANSWER"
else
PREFIX="Steam"
fi
# Setting prefix path
POL_Wine_SelectPrefix "$PREFIX"
# Downloading wine if necessary and creating prefix
POL_System_SetArch "x86" # forcing x86 to avoid any possible x64 related bugs
POL_Wine_PrefixCreate "$WINEVERSION"
# Installing mandatory dependencies
POL_Wine_InstallFonts
POL_Call POL_Install_corefonts
POL_Function_FontsSmoothRGB
POL_Call POL_Install_ie8 #fixes the glitchy browsing/non-working search bar in community
POL_Call POL_Install_flashplayer #fixes other glitches
POL_Call POL_Install_AdobeAir #slihtly speeds up dropdowns (e.g. for birthdate selections)
POL_Wine_OverrideDLL "" "dwrite"
#downloading latest Steam
cd "$POL_USER_ROOT/wineprefix/$PREFIX/drive_c/"
#POL_Download "http://cdn.steampowered.com/download/$STEAM_EXEC" ""
#Installing Steam
cd "$POL_USER_ROOT/wineprefix/$PREFIX/drive_c/"
POL_Download "http://media.steampowered.com/client/installer/SteamSetup.exe"
POL_Wine_WaitBefore "$TITLE"
POL_Wine "SteamSetup.exe"
# Asking about memory size of graphic card
POL_SetupWindow_VMS "$GAME_VMS"
## Fix for Steam
# Note : semble ne plus être nécéssaire désormais?
POL_Wine_OverrideDLL "" "gameoverlayrenderer"
## End Fix
# Making shortcut
POL_Shortcut "Steam.exe" "$TITLE"
#POL_SetupWindow_message "$(eval_gettext 'If you encounter problems with some games, try to disable Steam Overlay')" "$TITLE"
POL_SetupWindow_message "$(eval_gettext 'If you want to install $TITLE in another virtual drive\nRun this installer again')" "$TITLE"
POL_SetupWindow_Close
exit 0 Replies |
||
| petch | Thursday 1 January 2015 at 21:54 | ||
petch
Developer
|
WarningThis update has not been approved yet by the team. MessageRe-disable game overlay http://www.playonlinux.com/en/topic-12737-Issue_Final_Fantasy_VII_Steam_.html Differences@@ -70,14 +70,14 @@ POL_SetupWindow_VMS "$GAME_VMS" ## Fix for Steam -# Note : semble ne plus être nécéssaire désormais -#POL_Wine_OverrideDLL "" "gameoverlayrenderer" +# Note : semble ne plus être nécéssaire désormais? +POL_Wine_OverrideDLL "" "gameoverlayrenderer" ## End Fix # Making shortcut POL_Shortcut "Steam.exe" "$TITLE" -POL_SetupWindow_message "$(eval_gettext 'If you encounter problems with some games, try to disable Steam Overlay')" "$TITLE" +#POL_SetupWindow_message "$(eval_gettext 'If you encounter problems with some games, try to disable Steam Overlay')" "$TITLE" POL_SetupWindow_message "$(eval_gettext 'If you want to install $TITLE in another virtual drive\nRun this installer again')" "$TITLE" New source code#!/bin/bash
# Date : (2010-02-10 16:30)
# Last revision : (2012-07-21 21:00)
# Wine version used : 1.3.9, 1.3.11, 1.3.15, 1.3.18, 1.3.19, 1.3.23, 1.3.24, 1.2.3, 1.3.28, 1.3.37, 1.4.1
# Distribution used to test : Debian Testing
# Author : Tinou
# Licence : Retail
# Only For : http://www.playonlinux.com
#
# Ce script est partculier, il permet d'installer Steam sur autant de préfixe qu'on
# souhaite.
#
# Il faut donc être vigilent, et mettre le moins de paquets possible, pour que
# l'utilisateur puisse les réinstaller à sa guise. Il est facile d'installer vcrun2005,
# par contre il est difficile de le désinstaller.
#
# On installe donc seulement gecko qui est indispensable, et on évite le reste
#
##############################################################
# CHANGELOG
# [SuperPlumus] (2013-06-09 15-47)
# gettext
[ "$PLAYONLINUX" = "" ] && exit 0
source "$PLAYONLINUX/lib/sources"
TITLE="Steam"
WINEVERSION="1.7.33"
GAME_VMS="256"
#starting the script
POL_SetupWindow_Init
POL_SetupWindow_presentation "$TITLE" "Valve" "http://www.valvesoftware.com/" "Tinou" "$PREFIX"
# Si le prefix existe, on propose d'en faire un autre
if [ -e "$POL_USER_ROOT/wineprefix/Steam" ]; then
POL_SetupWindow_textbox "$(eval_gettext 'Please choose a virtual drive name')" "$TITLE"
PREFIX="$APP_ANSWER"
else
PREFIX="Steam"
fi
# Setting prefix path
POL_Wine_SelectPrefix "$PREFIX"
# Downloading wine if necessary and creating prefix
POL_System_SetArch "x86" # forcing x86 to avoid any possible x64 related bugs
POL_Wine_PrefixCreate "$WINEVERSION"
# Installing mandatory dependencies
POL_Wine_InstallFonts
POL_Call POL_Install_corefonts
POL_Function_FontsSmoothRGB
POL_Wine_OverrideDLL "" "dwrite"
#downloading latest Steam
cd "$POL_USER_ROOT/wineprefix/$PREFIX/drive_c/"
#POL_Download "http://cdn.steampowered.com/download/$STEAM_EXEC" ""
#Installing Steam
cd "$POL_USER_ROOT/wineprefix/$PREFIX/drive_c/"
POL_Download "http://media.steampowered.com/client/installer/SteamSetup.exe"
POL_Wine_WaitBefore "$TITLE"
POL_Wine "SteamSetup.exe"
# Asking about memory size of graphic card
POL_SetupWindow_VMS "$GAME_VMS"
## Fix for Steam
# Note : semble ne plus être nécéssaire désormais?
POL_Wine_OverrideDLL "" "gameoverlayrenderer"
## End Fix
# Making shortcut
POL_Shortcut "Steam.exe" "$TITLE"
#POL_SetupWindow_message "$(eval_gettext 'If you encounter problems with some games, try to disable Steam Overlay')" "$TITLE"
POL_SetupWindow_message "$(eval_gettext 'If you want to install $TITLE in another virtual drive\nRun this installer again')" "$TITLE"
POL_SetupWindow_Close
exit 0 Replies |
||
| RobLoach | Saturday 13 December 2014 at 20:55 | ||
|
RobLoach
|
WarningThis update has not been approved yet by the team. MessageThis updates to use the latest version of WINE. Differences@@ -27,7 +27,7 @@ source "$PLAYONLINUX/lib/sources" TITLE="Steam" -WINEVERSION="1.7.22" +WINEVERSION="1.7.33" GAME_VMS="256" #starting the script New source code#!/bin/bash
# Date : (2010-02-10 16:30)
# Last revision : (2012-07-21 21:00)
# Wine version used : 1.3.9, 1.3.11, 1.3.15, 1.3.18, 1.3.19, 1.3.23, 1.3.24, 1.2.3, 1.3.28, 1.3.37, 1.4.1
# Distribution used to test : Debian Testing
# Author : Tinou
# Licence : Retail
# Only For : http://www.playonlinux.com
#
# Ce script est partculier, il permet d'installer Steam sur autant de préfixe qu'on
# souhaite.
#
# Il faut donc être vigilent, et mettre le moins de paquets possible, pour que
# l'utilisateur puisse les réinstaller à sa guise. Il est facile d'installer vcrun2005,
# par contre il est difficile de le désinstaller.
#
# On installe donc seulement gecko qui est indispensable, et on évite le reste
#
##############################################################
# CHANGELOG
# [SuperPlumus] (2013-06-09 15-47)
# gettext
[ "$PLAYONLINUX" = "" ] && exit 0
source "$PLAYONLINUX/lib/sources"
TITLE="Steam"
WINEVERSION="1.7.33"
GAME_VMS="256"
#starting the script
POL_SetupWindow_Init
POL_SetupWindow_presentation "$TITLE" "Valve" "http://www.valvesoftware.com/" "Tinou" "$PREFIX"
# Si le prefix existe, on propose d'en faire un autre
if [ -e "$POL_USER_ROOT/wineprefix/Steam" ]; then
POL_SetupWindow_textbox "$(eval_gettext 'Please choose a virtual drive name')" "$TITLE"
PREFIX="$APP_ANSWER"
else
PREFIX="Steam"
fi
# Setting prefix path
POL_Wine_SelectPrefix "$PREFIX"
# Downloading wine if necessary and creating prefix
POL_System_SetArch "x86" # forcing x86 to avoid any possible x64 related bugs
POL_Wine_PrefixCreate "$WINEVERSION"
# Installing mandatory dependencies
POL_Wine_InstallFonts
POL_Call POL_Install_corefonts
POL_Function_FontsSmoothRGB
POL_Wine_OverrideDLL "" "dwrite"
#downloading latest Steam
cd "$POL_USER_ROOT/wineprefix/$PREFIX/drive_c/"
#POL_Download "http://cdn.steampowered.com/download/$STEAM_EXEC" ""
#Installing Steam
cd "$POL_USER_ROOT/wineprefix/$PREFIX/drive_c/"
POL_Download "http://media.steampowered.com/client/installer/SteamSetup.exe"
POL_Wine_WaitBefore "$TITLE"
POL_Wine "SteamSetup.exe"
# Asking about memory size of graphic card
POL_SetupWindow_VMS "$GAME_VMS"
## Fix for Steam
# Note : semble ne plus être nécéssaire désormais
#POL_Wine_OverrideDLL "" "gameoverlayrenderer"
## End Fix
# Making shortcut
POL_Shortcut "Steam.exe" "$TITLE"
POL_SetupWindow_message "$(eval_gettext 'If you encounter problems with some games, try to disable Steam Overlay')" "$TITLE"
POL_SetupWindow_message "$(eval_gettext 'If you want to install $TITLE in another virtual drive\nRun this installer again')" "$TITLE"
POL_SetupWindow_Close
exit 0 Replies |
||
| diziet | Friday 3 October 2014 at 4:38 | ||
diziet
|
Messagein the past week after a steam update i was no longer able to view the store and community pages properly, after looking on winehq.org i found the following: [BEST SOLLUTION]To be able to see text Add in terminal after installing steam : wine reg add 'HKCU\Software\Valve\Steam' /v DWriteEnable /t REG_DWORD /d 00000000 doing this fixed my problem viewing all the steam pages, i'm not sure what this does but maybe you need to add this to the installer? diziet Replies |
||
| Quentin PÂRIS | Saturday 16 August 2014 at 20:41 | ||
Quentin PÂRIS
Admin
|
WarningThis update has not been approved yet by the team. MessageFont problem fixed Differences@@ -53,6 +53,7 @@ POL_Wine_InstallFonts POL_Call POL_Install_corefonts POL_Function_FontsSmoothRGB +POL_Wine_OverrideDLL "" "dwrite" #downloading latest Steam cd "$POL_USER_ROOT/wineprefix/$PREFIX/drive_c/" @@ -64,7 +65,6 @@ POL_Wine_WaitBefore "$TITLE" POL_Wine "SteamSetup.exe" -POL_Wine_WaitExit "$TITLE" # Asking about memory size of graphic card POL_SetupWindow_VMS "$GAME_VMS" @@ -72,7 +72,6 @@ ## Fix for Steam # Note : semble ne plus être nécéssaire désormais #POL_Wine_OverrideDLL "" "gameoverlayrenderer" -POL_Wine_OverrideDLL "" "dwrite" ## End Fix # Making shortcut New source code#!/bin/bash
# Date : (2010-02-10 16:30)
# Last revision : (2012-07-21 21:00)
# Wine version used : 1.3.9, 1.3.11, 1.3.15, 1.3.18, 1.3.19, 1.3.23, 1.3.24, 1.2.3, 1.3.28, 1.3.37, 1.4.1
# Distribution used to test : Debian Testing
# Author : Tinou
# Licence : Retail
# Only For : http://www.playonlinux.com
#
# Ce script est partculier, il permet d'installer Steam sur autant de préfixe qu'on
# souhaite.
#
# Il faut donc être vigilent, et mettre le moins de paquets possible, pour que
# l'utilisateur puisse les réinstaller à sa guise. Il est facile d'installer vcrun2005,
# par contre il est difficile de le désinstaller.
#
# On installe donc seulement gecko qui est indispensable, et on évite le reste
#
##############################################################
# CHANGELOG
# [SuperPlumus] (2013-06-09 15-47)
# gettext
[ "$PLAYONLINUX" = "" ] && exit 0
source "$PLAYONLINUX/lib/sources"
TITLE="Steam"
WINEVERSION="1.7.22"
GAME_VMS="256"
#starting the script
POL_SetupWindow_Init
POL_SetupWindow_presentation "$TITLE" "Valve" "http://www.valvesoftware.com/" "Tinou" "$PREFIX"
# Si le prefix existe, on propose d'en faire un autre
if [ -e "$POL_USER_ROOT/wineprefix/Steam" ]; then
POL_SetupWindow_textbox "$(eval_gettext 'Please choose a virtual drive name')" "$TITLE"
PREFIX="$APP_ANSWER"
else
PREFIX="Steam"
fi
# Setting prefix path
POL_Wine_SelectPrefix "$PREFIX"
# Downloading wine if necessary and creating prefix
POL_System_SetArch "x86" # forcing x86 to avoid any possible x64 related bugs
POL_Wine_PrefixCreate "$WINEVERSION"
# Installing mandatory dependencies
POL_Wine_InstallFonts
POL_Call POL_Install_corefonts
POL_Function_FontsSmoothRGB
POL_Wine_OverrideDLL "" "dwrite"
#downloading latest Steam
cd "$POL_USER_ROOT/wineprefix/$PREFIX/drive_c/"
#POL_Download "http://cdn.steampowered.com/download/$STEAM_EXEC" ""
#Installing Steam
cd "$POL_USER_ROOT/wineprefix/$PREFIX/drive_c/"
POL_Download "http://media.steampowered.com/client/installer/SteamSetup.exe"
POL_Wine_WaitBefore "$TITLE"
POL_Wine "SteamSetup.exe"
# Asking about memory size of graphic card
POL_SetupWindow_VMS "$GAME_VMS"
## Fix for Steam
# Note : semble ne plus être nécéssaire désormais
#POL_Wine_OverrideDLL "" "gameoverlayrenderer"
## End Fix
# Making shortcut
POL_Shortcut "Steam.exe" "$TITLE"
POL_SetupWindow_message "$(eval_gettext 'If you encounter problems with some games, try to disable Steam Overlay')" "$TITLE"
POL_SetupWindow_message "$(eval_gettext 'If you want to install $TITLE in another virtual drive\nRun this installer again')" "$TITLE"
POL_SetupWindow_Close
exit 0 RepliesEdited by Tinou |
||
| Quentin PÂRIS | Monday 4 August 2014 at 17:38 | ||
Quentin PÂRIS
Admin
|
WarningThis update has not been approved yet by the team. Differences@@ -30,17 +30,6 @@ WINEVERSION="1.7.22" GAME_VMS="256" -# Select the good install file -if [ "$POL_LANG" == "fr" ]; then -STEAM_EXEC="SteamInstall_French.msi" -elif [ "$POL_LANG" == "de" ]; then -STEAM_EXEC="SteamInstall_German.msi" -elif [ "$POL_LANG" == "es" ]; then -STEAM_EXEC="SteamInstall_Spanish.msi" -else -STEAM_EXEC="SteamInstall.msi" -fi - #starting the script POL_SetupWindow_Init POL_SetupWindow_presentation "$TITLE" "Valve" "http://www.valvesoftware.com/" "Tinou" "$PREFIX" @@ -66,11 +55,14 @@ #downloading latest Steam cd "$POL_USER_ROOT/wineprefix/$PREFIX/drive_c/" -POL_Download "http://cdn.steampowered.com/download/$STEAM_EXEC" "" +#POL_Download "http://cdn.steampowered.com/download/$STEAM_EXEC" "" #Installing Steam cd "$POL_USER_ROOT/wineprefix/$PREFIX/drive_c/" -POL_Wine msiexec /i "$STEAM_EXEC" /q +POL_Download "http://media.steampowered.com/client/installer/SteamSetup.exe" + +POL_Wine_WaitBefore "$TITLE" +POL_Wine "SteamSetup.exe" POL_Wine_WaitExit "$TITLE" # Asking about memory size of graphic card New source code#!/bin/bash
# Date : (2010-02-10 16:30)
# Last revision : (2012-07-21 21:00)
# Wine version used : 1.3.9, 1.3.11, 1.3.15, 1.3.18, 1.3.19, 1.3.23, 1.3.24, 1.2.3, 1.3.28, 1.3.37, 1.4.1
# Distribution used to test : Debian Testing
# Author : Tinou
# Licence : Retail
# Only For : http://www.playonlinux.com
#
# Ce script est partculier, il permet d'installer Steam sur autant de préfixe qu'on
# souhaite.
#
# Il faut donc être vigilent, et mettre le moins de paquets possible, pour que
# l'utilisateur puisse les réinstaller à sa guise. Il est facile d'installer vcrun2005,
# par contre il est difficile de le désinstaller.
#
# On installe donc seulement gecko qui est indispensable, et on évite le reste
#
##############################################################
# CHANGELOG
# [SuperPlumus] (2013-06-09 15-47)
# gettext
[ "$PLAYONLINUX" = "" ] && exit 0
source "$PLAYONLINUX/lib/sources"
TITLE="Steam"
WINEVERSION="1.7.22"
GAME_VMS="256"
#starting the script
POL_SetupWindow_Init
POL_SetupWindow_presentation "$TITLE" "Valve" "http://www.valvesoftware.com/" "Tinou" "$PREFIX"
# Si le prefix existe, on propose d'en faire un autre
if [ -e "$POL_USER_ROOT/wineprefix/Steam" ]; then
POL_SetupWindow_textbox "$(eval_gettext 'Please choose a virtual drive name')" "$TITLE"
PREFIX="$APP_ANSWER"
else
PREFIX="Steam"
fi
# Setting prefix path
POL_Wine_SelectPrefix "$PREFIX"
# Downloading wine if necessary and creating prefix
POL_System_SetArch "x86" # forcing x86 to avoid any possible x64 related bugs
POL_Wine_PrefixCreate "$WINEVERSION"
# Installing mandatory dependencies
POL_Wine_InstallFonts
POL_Function_FontsSmoothRGB
#downloading latest Steam
cd "$POL_USER_ROOT/wineprefix/$PREFIX/drive_c/"
#POL_Download "http://cdn.steampowered.com/download/$STEAM_EXEC" ""
#Installing Steam
cd "$POL_USER_ROOT/wineprefix/$PREFIX/drive_c/"
POL_Download "http://media.steampowered.com/client/installer/SteamSetup.exe"
POL_Wine_WaitBefore "$TITLE"
POL_Wine "SteamSetup.exe"
POL_Wine_WaitExit "$TITLE"
# Asking about memory size of graphic card
POL_SetupWindow_VMS "$GAME_VMS"
## Fix for Steam
# Note : semble ne plus être nécéssaire désormais
#POL_Wine_OverrideDLL "" "gameoverlayrenderer"
POL_Wine_OverrideDLL "" "dwrite"
## End Fix
# Making shortcut
POL_Shortcut "Steam.exe" "$TITLE"
POL_SetupWindow_message "$(eval_gettext 'If you encounter problems with some games, try to disable Steam Overlay')" "$TITLE"
POL_SetupWindow_message "$(eval_gettext 'If you want to install $TITLE in another virtual drive\nRun this installer again')" "$TITLE"
POL_SetupWindow_Close
exit 0 Replies |
||
| Quentin PÂRIS | Tuesday 22 July 2014 at 11:38 | ||
Quentin PÂRIS
Admin
|
WarningThis update has not been approved yet by the team. Differences@@ -85,6 +85,9 @@ # Making shortcut POL_Shortcut "Steam.exe" "$TITLE" +POL_SetupWindow_message "$(eval_gettext 'If you encounter problems with some games, try to disable Steam Overlay')" "$TITLE" + + POL_SetupWindow_message "$(eval_gettext 'If you want to install $TITLE in another virtual drive\nRun this installer again')" "$TITLE" POL_SetupWindow_Close New source code#!/bin/bash
# Date : (2010-02-10 16:30)
# Last revision : (2012-07-21 21:00)
# Wine version used : 1.3.9, 1.3.11, 1.3.15, 1.3.18, 1.3.19, 1.3.23, 1.3.24, 1.2.3, 1.3.28, 1.3.37, 1.4.1
# Distribution used to test : Debian Testing
# Author : Tinou
# Licence : Retail
# Only For : http://www.playonlinux.com
#
# Ce script est partculier, il permet d'installer Steam sur autant de préfixe qu'on
# souhaite.
#
# Il faut donc être vigilent, et mettre le moins de paquets possible, pour que
# l'utilisateur puisse les réinstaller à sa guise. Il est facile d'installer vcrun2005,
# par contre il est difficile de le désinstaller.
#
# On installe donc seulement gecko qui est indispensable, et on évite le reste
#
##############################################################
# CHANGELOG
# [SuperPlumus] (2013-06-09 15-47)
# gettext
[ "$PLAYONLINUX" = "" ] && exit 0
source "$PLAYONLINUX/lib/sources"
TITLE="Steam"
WINEVERSION="1.7.22"
GAME_VMS="256"
# Select the good install file
if [ "$POL_LANG" == "fr" ]; then
STEAM_EXEC="SteamInstall_French.msi"
elif [ "$POL_LANG" == "de" ]; then
STEAM_EXEC="SteamInstall_German.msi"
elif [ "$POL_LANG" == "es" ]; then
STEAM_EXEC="SteamInstall_Spanish.msi"
else
STEAM_EXEC="SteamInstall.msi"
fi
#starting the script
POL_SetupWindow_Init
POL_SetupWindow_presentation "$TITLE" "Valve" "http://www.valvesoftware.com/" "Tinou" "$PREFIX"
# Si le prefix existe, on propose d'en faire un autre
if [ -e "$POL_USER_ROOT/wineprefix/Steam" ]; then
POL_SetupWindow_textbox "$(eval_gettext 'Please choose a virtual drive name')" "$TITLE"
PREFIX="$APP_ANSWER"
else
PREFIX="Steam"
fi
# Setting prefix path
POL_Wine_SelectPrefix "$PREFIX"
# Downloading wine if necessary and creating prefix
POL_System_SetArch "x86" # forcing x86 to avoid any possible x64 related bugs
POL_Wine_PrefixCreate "$WINEVERSION"
# Installing mandatory dependencies
POL_Wine_InstallFonts
POL_Function_FontsSmoothRGB
#downloading latest Steam
cd "$POL_USER_ROOT/wineprefix/$PREFIX/drive_c/"
POL_Download "http://cdn.steampowered.com/download/$STEAM_EXEC" ""
#Installing Steam
cd "$POL_USER_ROOT/wineprefix/$PREFIX/drive_c/"
POL_Wine msiexec /i "$STEAM_EXEC" /q
POL_Wine_WaitExit "$TITLE"
# Asking about memory size of graphic card
POL_SetupWindow_VMS "$GAME_VMS"
## Fix for Steam
# Note : semble ne plus être nécéssaire désormais
#POL_Wine_OverrideDLL "" "gameoverlayrenderer"
POL_Wine_OverrideDLL "" "dwrite"
## End Fix
# Making shortcut
POL_Shortcut "Steam.exe" "$TITLE"
POL_SetupWindow_message "$(eval_gettext 'If you encounter problems with some games, try to disable Steam Overlay')" "$TITLE"
POL_SetupWindow_message "$(eval_gettext 'If you want to install $TITLE in another virtual drive\nRun this installer again')" "$TITLE"
POL_SetupWindow_Close
exit 0 Replies |
||
| Quentin PÂRIS | Sunday 20 July 2014 at 1:00 | ||
Quentin PÂRIS
Admin
|
WarningThis update has not been approved yet by the team. Differences@@ -27,7 +27,7 @@ source "$PLAYONLINUX/lib/sources" TITLE="Steam" -WINEVERSION="1.5.25" +WINEVERSION="1.7.22" GAME_VMS="256" # Select the good install file New source code#!/bin/bash
# Date : (2010-02-10 16:30)
# Last revision : (2012-07-21 21:00)
# Wine version used : 1.3.9, 1.3.11, 1.3.15, 1.3.18, 1.3.19, 1.3.23, 1.3.24, 1.2.3, 1.3.28, 1.3.37, 1.4.1
# Distribution used to test : Debian Testing
# Author : Tinou
# Licence : Retail
# Only For : http://www.playonlinux.com
#
# Ce script est partculier, il permet d'installer Steam sur autant de préfixe qu'on
# souhaite.
#
# Il faut donc être vigilent, et mettre le moins de paquets possible, pour que
# l'utilisateur puisse les réinstaller à sa guise. Il est facile d'installer vcrun2005,
# par contre il est difficile de le désinstaller.
#
# On installe donc seulement gecko qui est indispensable, et on évite le reste
#
##############################################################
# CHANGELOG
# [SuperPlumus] (2013-06-09 15-47)
# gettext
[ "$PLAYONLINUX" = "" ] && exit 0
source "$PLAYONLINUX/lib/sources"
TITLE="Steam"
WINEVERSION="1.7.22"
GAME_VMS="256"
# Select the good install file
if [ "$POL_LANG" == "fr" ]; then
STEAM_EXEC="SteamInstall_French.msi"
elif [ "$POL_LANG" == "de" ]; then
STEAM_EXEC="SteamInstall_German.msi"
elif [ "$POL_LANG" == "es" ]; then
STEAM_EXEC="SteamInstall_Spanish.msi"
else
STEAM_EXEC="SteamInstall.msi"
fi
#starting the script
POL_SetupWindow_Init
POL_SetupWindow_presentation "$TITLE" "Valve" "http://www.valvesoftware.com/" "Tinou" "$PREFIX"
# Si le prefix existe, on propose d'en faire un autre
if [ -e "$POL_USER_ROOT/wineprefix/Steam" ]; then
POL_SetupWindow_textbox "$(eval_gettext 'Please choose a virtual drive name')" "$TITLE"
PREFIX="$APP_ANSWER"
else
PREFIX="Steam"
fi
# Setting prefix path
POL_Wine_SelectPrefix "$PREFIX"
# Downloading wine if necessary and creating prefix
POL_System_SetArch "x86" # forcing x86 to avoid any possible x64 related bugs
POL_Wine_PrefixCreate "$WINEVERSION"
# Installing mandatory dependencies
POL_Wine_InstallFonts
POL_Function_FontsSmoothRGB
#downloading latest Steam
cd "$POL_USER_ROOT/wineprefix/$PREFIX/drive_c/"
POL_Download "http://cdn.steampowered.com/download/$STEAM_EXEC" ""
#Installing Steam
cd "$POL_USER_ROOT/wineprefix/$PREFIX/drive_c/"
POL_Wine msiexec /i "$STEAM_EXEC" /q
POL_Wine_WaitExit "$TITLE"
# Asking about memory size of graphic card
POL_SetupWindow_VMS "$GAME_VMS"
## Fix for Steam
# Note : semble ne plus être nécéssaire désormais
#POL_Wine_OverrideDLL "" "gameoverlayrenderer"
POL_Wine_OverrideDLL "" "dwrite"
## End Fix
# Making shortcut
POL_Shortcut "Steam.exe" "$TITLE"
POL_SetupWindow_message "$(eval_gettext 'If you want to install $TITLE in another virtual drive\nRun this installer again')" "$TITLE"
POL_SetupWindow_Close
exit 0 Replies |