Turns out Japanese game requires Japanese locale... and the games are launched using a .bat script.
Anything besides en_US gives me this error log instead of launching the .bat script:
fixme:exec:SHELL_execute flags ignored: 0x00000100 err:wineconsole:WCUSER_SetFont wrong font err:wineconsole:WCUSER_SetFont wrong font err:wineconsole:WCUSER_SetFont wrong font err:wineconsole:WCUSER_SetFont wrong font err:wineconsole:WINECON_Fatal Couldn't find a decent font, aborting
The solution here makes me want to tear my hair out/doesn't make sense to me (mostly because I don't know how to wineconsole C:/file.bat) and might not work in the first place.
This patch seems like it *might* work, but...
1. That's one heckuva inelegant solution.
2. I no longer have a 10.6.x device to work with.
Does anyone else have any ideas/solutions/same problem/a way of making the below .bat script into something that plays nice with Wineskin? (I lost the damn plistbuddy binary.)
@echo off Color A Echo GAME Part Selector Echo. Echo. Echo. :START Echo PLEASE CHOOSE YOUR GAME Echo. Echo [1] Exceed 1st Gun Bullet Children Echo. Echo [2] Exceed 2nd Vampire REX Echo. Echo [3] Exceed 3rd Jade Penetrate Black Echo. Echo. Echo. Echo. Echo. set /p choice=YOU CHOOSED_ if %choice% == 1 goto 1ST if %choice% == 2 goto 2ND if %choice% == 3 goto 3RD if not %choice% == 1 goto BAD if not %choice% == 2 goto BAD if not %choice% == 3 goto BAD :1ST cd Exceed 1st Gun Bullet Children pause Exceed1.exe goto exit :2ND cd Exceed 2nd Vampire REX pause Exceed2.exe goto exit :3RD cd Exceed 3rd Jade Penetrate Black pause Exceed3.exe goto exit :BAD set /p _ok=*BAD CHOICE. CHOOSE AGAIN!* goto START :Exit pause exit


















