Game runs perfectly fine, no issues. Make sure to install the H-Patch!
Changed system swap size to 16G. Although 2G should be enough.
Different chapter has different memory usage, and RAM resets when entering next chapter. Later chapter would use 14~15G RAM and exceed default available 14.5G. If swap file is full during high memory usage, the screen may go dark and steam launcher rebooted after several minutes. For GE-8.32, the entire system would crash, manual reboot seems to be the only way out.
With enough swap space, the game will still work normally. For my system, 1.4G swap and 13.1G RAM used in those chapter.
I suspect reduce VRAM size may also do the trick, but not tested.
- TDP: 5W
- FPS: 60
Crash can be eliminated by setting larger swap size.
Movie file in the patch is WMV, some proton runtime have truble playing WMV. Convert them to mp4 with ffmpeg may fix the problem.
Sometimes, other characters sprites appear on the background randomly, but saving and loading solves it.
I think the videos only play on GE-Proton8-22, on normal Proton versions they are skipped.
Videos play without audio.
I wasn't able to fix audio by installing extra stuff or disabling protonaudioconverterbin
(solution mentioned in reports about first part of the game)
However, converting all videos from movie
folder into less obscure format did the trick, this way videos play properly (with audio) in proton-ge or wine-ge. Script for reference:
#!/usr/bin/env bash
for file in *.dat; do
mv ${file} ${file}_orig
ffmpeg -i ${file}_orig -c:v libx264 -preset slow -crf 23 \
-c:a aac -b:a 192k output.mp4
mv output.mp4 ${file}
done