poliva / fightcadestates

FightCade Savestates
14 stars 16 forks source link

problem to execute fightcade2Handler on Mac Catalina #131

Open jjumman opened 4 years ago

jjumman commented 4 years ago

Hello.

I'm facing the problem to execute fightcade2Handler on MAC And when I check the fcade.py script, it run wine SW with window fbaxxx.exe file with KOF98 But after launching wine, the program is not showing.

[Application/FightCade2/XXX/XXX/MacOS/emulater/fcade.py] FightCade is using own wine binary to execute window exe file.

# try to find wine
wine=os.path.join(dirtest,**"../../Resources/usr/bin/wine"**)
if not os.path.isfile(wine):
    wine="/usr/bin/wine"
if not os.path.isfile(wine):
    wine='/usr/local/bin/wine'
if not os.path.isfile(wine):

============================================================

So I can guess after launching wine, It has failed.

So I have checked the wineHQ hompage. and I found Catalina no longer support 32-bit program from that version. and the wineHQ homepage shows like below. https://wiki.winehq.org/MacOS

Official WineHQ packages of the development and stable branches are available for macOS 10.8 to 10.14 (Wine won't work on macOS Catalina 10.15). Please test these packages and report any bugs at http://bugs.winehq.org.

Above information was I found regarding this problem.

I'm not sure we can solve this without version-up wine and FightCade. (even if wineHQ update wine to support MAC 10.15, I think some script of fightCade need to be modified.)

Can someone fix this?