It's not enough to get this game working properly, but I pushed a fix to Wine Mono: https://gitlab.winehq.org/mono/mono/-/tree/0274f7eec584e64d3f9408ce0af4ac21c363feb4 It seems the next problem is that the menu needs the...
The game has code that calls Encoding.UTF8.GetBytes(string) and passes the result to an external dll (sqlite3). The external dll expects a null-terminated UTF8 string, but GetBytes doesn't include a null terminator. This...