http://bugs.winehq.org/show_bug.cgi?id=59481 --- Comment #5 from Andrew Nguyen <arethusa26@gmail.com> --- The game demo fails with the same issue when trying to launch the FaceMaker feature on 64-bit Windows 11. This is because the game tries to access the file "c:\\program files\\won\\facemaker\\facemaker.ini" which has the "Program Files" directory name hardcoded. The game consults the hoyledemo.ini configuration file in the installation directory to determine the path to the FaceMaker directory: 00ec:Call KERNEL32.GetPrivateProfileStringA(00e21187 "Settings",0052157c "FaceMakerPath",0053cbe0 "",0022fb2c,000000ff,00e21088 "C:\\SIERRA\\Hoyle Demo\\hoyledemo.ini") ret=004c4495 ... 00ec:Ret KERNEL32.GetPrivateProfileStringA() retval=00000000 ret=004c4495 No value is specified for the FaceMakerPath key in the hoyledemo.ini file, so the game falls back to the hardcoded path specified in strings.txt in the installation directory: SID_SHELL_FACEMAKERPATH 500086 c:\program files\won\facemaker To make the game work on 64-bit Windows or with a 64-bit Wine prefix, it's sufficient to either update the SID_SHELL_FACEMAKERPATH value in strings.txt to the correct path "C:\Program Files (x86)\WON\FaceMaker" or to add the FaceMakerPath key to the Settings section in hoyledemo.ini, leaving the file looking like this: [Settings] FullScreen=0 FaceMakerPath="C:\Program Files (x86)\WON\FaceMaker\" I presume Hoyle Word Games 3 has similar means of updating the FaceMaker path to allow its FaceMaker feature to also work on Wine. As there is no issue to fix in Wine, I'm resolving this bug as invalid. -- Do not reply to this email, post in Bugzilla using the above URL to reply. You are receiving this mail because: You are watching all bug changes.