Yay â€" I've done it!
Problem 1 â€" Graphics mode:
By starting winsetup.exe there's a bug that won't create the mandatory needed acsetup.cfg file. So you've to do it yourself with the following content:
Code: ags
Problem 2 â€" Sound driver:
The audio issues depends on a well known conflict between PulseAudio and Wine, which can be solved with a special startscript (don't forget to set the execution rights!).
Code: ags
Problem 1 â€" Graphics mode:
By starting winsetup.exe there's a bug that won't create the mandatory needed acsetup.cfg file. So you've to do it yourself with the following content:
[sound]
digiid=-1
midiid=-1
digiwin=1096302880
midiwin=-1
digiindx=0
midiindx=0
digiwinindx=0
midiwinindx=0
[misc]
gamecolordepth=16
defaultres=1
screenres=1
letterbox=0
windowed=0
refresh=0
[language]
translation=English
Problem 2 â€" Sound driver:
The audio issues depends on a well known conflict between PulseAudio and Wine, which can be solved with a special startscript (don't forget to set the execution rights!).
#!/bin/sh
# Deactivate PulseAudio if audio problems occur:
pulseaudio -k
# Start wine application:
env WINEPREFIX="$HOME/.wine" wine Maniac.exe
# Reactivate PulseAudio:
pulseaudio -D