


protontricks 628060 -f quartz devenum wmp11
UI location mismatch. Things aren't where they actually are.
In addition to nanliu's report below and the protontricks mentioned here, you also need to alter the codec used by the BGM so they can play correctly.
under Steam/steamapps/common/San10WPK/BGM/, create a text file and name it fix_audio.sh. Open the file with a text editor and copy and paste the following into the file:
#!/usr/bin/env bash
for wma_file in *.wma
do
new_filename="$wma_file".ORIGINAL
echo "Renaming $wma_file to $new_filename"
mv "$wma_file" "$new_filename"
ffmpeg -i "$new_filename" -acodec pcm_s16le "$wma_file"
done
Open up a terminal in the BGM directory and run the following:
sudo chmod +x fix_audio.sh
./fix_videos.sh
This should allow the BGM to play properly.
Also under Steam/steamapps/common/San10WPK/, I would highly suggest to just rename the Movie folder to something like Movie_bak so the game doesn't try to play the movies.

Add ScreenMode
registry key to enable windowed mode instead of running full screen. Modify the file ./steamapps/compatdata/628060/pfx/user.reg
which should be in $HOME/.steam/debian-installation
on Ubuntu:
[Software\\KoeiTecmo\\35th\\San10WPK\\Configs]
"ScreenMode"=dword:00000002
Here's the three possible values. Full screen does not work because mouse cursor is not in sync with the output:
dword:00000000 = Full Screen
dword:00000001 = 800 * 600 Window
dword:00000002 = 1024 * 768 Window
FMV intro does not work
Fullscreen is not playable due to mouse cursor not lined up with limited display output.

display/mouse mismatch https://github.com/ValveSoftware/Proton/issues/2792