Has anyone got any tips on how to get the MIDI interface working on MacOS Ventura? I installed FluidSynth and a soundfont via Homebrew, but the game still tells me that MIDI is not supported on my system.
Linux VM absolutely is not the best way to play the game.
If you know how native libraries and Homebrew work, some people have managed to get it to work by installing Fluidsynth from there and linking the correct libraries. Otherwise your only option is to wait for me to finally get around to shipping the natives (some day).
# Multiple Homebrews on Apple Silicon
if ["$(arch)" = "arm64"]; then
eval "$(/opt/homebrew/bin/brew shellenv)"
export PATH="/opt/homebrew/opt/[email protected]/bin:$PATH"
# export LDFLAGS="-L/opt/homebrew/opt/[email protected]/lib" # For compilers to find [email protected]
else
eval "$(/usr/local/bin/brew shellenv)"
export PATH="/usr/local/opt/[email protected]/bin:$PATH"
export PATH="/usr/local/opt/[email protected]/bin:$PATH"
# export LDFLAGS="-L/usr/local/opt/[email protected]/lib" # For compilers to find [email protected]
fi
Just an example how to open this file using the vscode:
code ~/.zshrc
`3) After that, you open new terminal session, switch to x86 zsh:
arch -x86_64 zsh
4) Install flyidsynth:
arch -x86_64 brew install fluid-synth
And it should work (at least worked for me)
If anyone using M1 would have any troubles with that feel free to quote here, dm here or in steam.`