https://bugs.winehq.org/show_bug.cgi?id=56517
Bug ID: 56517 Summary: osu!: Does not launch since 9.3 Product: Wine Version: 9.3 Hardware: x86-64 OS: Linux Status: UNCONFIRMED Severity: normal Priority: P2 Component: gdiplus Assignee: wine-bugs@winehq.org Reporter: kyuunex@protonmail.ch Distribution: ---
Created attachment 76272 --> https://bugs.winehq.org/attachment.cgi?id=76272 log
osu! does not launch since wine version 9.3.
easy script to reproduce ========================== #!/bin/sh export OSU_INSTALL_LOCATION="$HOME/.local/share/osu-stable" export WINEPREFIX="$HOME/.local/share/wineprefixes/osu-stable" export WINEARCH=win32
if [ ! -d "$OSU_INSTALL_LOCATION" ] then mkdir -p "$OSU_INSTALL_LOCATION" wget -O "$OSU_INSTALL_LOCATION/osu!.exe" "https://m1.ppy.sh/r/osu!install.exe" fi
if [ ! -d "$WINEPREFIX" ] then mkdir -p "$WINEPREFIX" winetricks -q --force dotnet40 fi
cd "$OSU_INSTALL_LOCATION" wine "osu!.exe" "$@" =====================================
There is a workaround by installing `gdiplus` via winetricks, however, it was not nessasary to install this prior to 9.3.
The bug is reproducable on the latest git commit as well as of the time of this report.